Class MapItemValue

java.lang.Object
org.apache.groovy.json.internal.MapItemValue
All Implemented Interfaces:
java.util.Map.Entry<java.lang.String,​Value>

public class MapItemValue
extends java.lang.Object
implements java.util.Map.Entry<java.lang.String,​Value>
This holds a mapping from value key to value value to maximize laziness.
  • Field Summary

    Fields
    Modifier and Type Field Description
    protected static java.util.concurrent.ConcurrentHashMap<java.lang.String,​java.lang.String> internedKeysCache  
  • Constructor Summary

    Constructors
    Constructor Description
    MapItemValue​(Value name, Value value)  
  • Method Summary

    Modifier and Type Method Description
    java.lang.String getKey()  
    Value getValue()  
    Value setValue​(Value value)  

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

    Methods inherited from interface java.util.Map.Entry

    equals, hashCode
  • Field Details

    • internedKeysCache

      protected static final java.util.concurrent.ConcurrentHashMap<java.lang.String,​java.lang.String> internedKeysCache
  • Constructor Details

    • MapItemValue

      public MapItemValue​(Value name, Value value)
  • Method Details

    • getKey

      public java.lang.String getKey()
      Specified by:
      getKey in interface java.util.Map.Entry<java.lang.String,​Value>
    • getValue

      public Value getValue()
      Specified by:
      getValue in interface java.util.Map.Entry<java.lang.String,​Value>
    • setValue

      public Value setValue​(Value value)
      Specified by:
      setValue in interface java.util.Map.Entry<java.lang.String,​Value>