public class LazyMap extends AbstractMap
This maps only builds once you ask for a key for the first time. It is designed to not incur the overhead of creating a map unless needed.
| Type Params | Return Type | Name and description | 
|---|---|---|
|  | public void | clear() | 
|  | public LazyMap | clearAndCopy() | 
|  | protected Object | clone() | 
|  | public boolean | containsKey(Object key) | 
|  | public boolean | containsValue(Object value) | 
|  | public Set<Entry<String, Object>> | entrySet() | 
|  | public boolean | equals(Object o) | 
|  | public Object | get(Object key) | 
| <V> | public static V[] | grow(V[] array) | 
|  | public int | hashCode() | 
|  | public boolean | isEmpty() | 
|  | public Set<String> | keySet() | 
|  | public Object | put(String key, Object value) | 
|  | public void | putAll(Map m) | 
|  | public Object | remove(Object key) | 
|  | public int | size() | 
|  | public String | toString() | 
|  | public Collection<Object> | values() | 
| Methods inherited from class | Name | 
|---|---|
| class AbstractMap | clear, compute, computeIfAbsent, computeIfPresent, containsKey, containsValue, entrySet, equals, forEach, get, getClass, getOrDefault, hashCode, isEmpty, keySet, merge, notify, notifyAll, put, putAll, putIfAbsent, remove, remove, replace, replace, replaceAll, size, toString, values, wait, wait, wait | 
Copyright © 2003-2025 The Apache Software Foundation. All rights reserved.