public interface ValueMap<K, V>
extends Map
Map contract used by the lazy JSON object implementations.
K - key typeV - value type| Type Params | Return Type | Name and description |
|---|---|---|
|
public void |
add(MapItemValue miv)Adds a parsed entry without forcing full map hydration. |
|
public boolean |
hydrated()Has the map been hydrated. |
|
public Entry<String, Value>[] |
items()Give me the items in the map without hydrating the map. |
|
public int |
len()Return size w/o hydrating the map. |
| Methods inherited from class | Name |
|---|---|
interface Map |
clear, compute, computeIfAbsent, computeIfPresent, containsKey, containsValue, copyOf, entry, entrySet, equals, forEach, get, getOrDefault, hashCode, isEmpty, keySet, merge, of, of, of, of, of, of, of, of, of, of, of, ofEntries, put, putAll, putIfAbsent, remove, remove, replace, replace, replaceAll, size, values |
Adds a parsed entry without forcing full map hydration.
miv - entry to appendHas the map been hydrated.
Give me the items in the map without hydrating the map. Realize that the array is likely larger than the length so array items can be null.
Return size w/o hydrating the map.