public class LazyMap<K,V> extends Object implements Map<K,V>
| Constructor and Description |
|---|
LazyMap(MapAccessor<K,V> delegate) |
| Modifier and Type | Method and Description |
|---|---|
void |
clear() |
boolean |
containsKey(Object key) |
boolean |
containsValue(Object value) |
Set<Map.Entry<K,V>> |
entrySet() |
boolean |
equals(Object o) |
V |
get(Object key) |
int |
hashCode() |
boolean |
isEmpty() |
boolean |
isModified() |
Set<K> |
keySet() |
V |
put(K key,
V value) |
void |
putAll(Map<? extends K,? extends V> t) |
V |
remove(Object key) |
int |
size() |
Collection<V> |
values() |
public LazyMap(MapAccessor<K,V> delegate) throws IllegalArgumentException
delegate - the delegateIllegalArgumentException - if the argument is nullpublic boolean isModified()
public boolean containsKey(Object key)
containsKey in interface Map<K,V>public boolean containsValue(Object value)
containsValue in interface Map<K,V>public boolean equals(Object o)
Copyright © 2025 JBoss by Red Hat. All Rights Reserved.