Package org.apache.groovy.json.internal
Interface ValueMap<K,V>
- 
- All Superinterfaces:
- Map<K,V>
 - All Known Implementing Classes:
- LazyValueMap,- ValueMapImpl
 
 public interface ValueMap<K,V> extends Map<K,V> 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidadd(MapItemValue miv)booleanhydrated()Has the map been hydrated.Map.Entry<String,Value>[]items()Give me the items in the map without hydrating the map.intlen()Return size w/o hydrating the map.- 
Methods inherited from interface java.util.Mapclear, compute, computeIfAbsent, computeIfPresent, containsKey, containsValue, entrySet, equals, forEach, get, getOrDefault, hashCode, isEmpty, keySet, merge, put, putAll, putIfAbsent, remove, remove, replace, replace, replaceAll, size, values
 
- 
 
- 
- 
- 
Method Detail- 
addvoid add(MapItemValue miv) 
 - 
lenint len() Return size w/o hydrating the map.
 - 
hydratedboolean hydrated() Has the map been hydrated.
 
- 
 
-