Package net.sf.jasperreports.engine.util
Class AdditionalEntryMap<K,V>
- java.lang.Object
-
- java.util.AbstractMap<K,V>
-
- net.sf.jasperreports.engine.util.AdditionalEntryMap<K,V>
-
- All Implemented Interfaces:
Map<K,V>
public class AdditionalEntryMap<K,V> extends AbstractMap<K,V>
- Author:
- Lucian Chirita (lucianc@users.sourceforge.net)
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description protected class
AdditionalEntryMap.AdditionalEntrySet
protected static class
AdditionalEntryMap.AdditionalIterator<E>
protected class
AdditionalEntryMap.AdditionalKeySet
protected class
AdditionalEntryMap.AdditionalValueCollection
-
Nested classes/interfaces inherited from class java.util.AbstractMap
AbstractMap.SimpleEntry<K extends Object,V extends Object>, AbstractMap.SimpleImmutableEntry<K extends Object,V extends Object>
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
containsKey(Object key)
boolean
containsValue(Object value)
Set<Map.Entry<K,V>>
entrySet()
V
get(Object key)
boolean
isEmpty()
Set<K>
keySet()
int
size()
Collection<V>
values()
-
Methods inherited from class java.util.AbstractMap
clear, clone, equals, hashCode, put, putAll, remove, toString
-
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.util.Map
compute, computeIfAbsent, computeIfPresent, forEach, getOrDefault, merge, putIfAbsent, remove, replace, replace, replaceAll
-
-
-
-
Method Detail
-
size
public int size()
-
isEmpty
public boolean isEmpty()
-
containsValue
public boolean containsValue(Object value)
- Specified by:
containsValue
in interfaceMap<K,V>
- Overrides:
containsValue
in classAbstractMap<K,V>
-
containsKey
public boolean containsKey(Object key)
- Specified by:
containsKey
in interfaceMap<K,V>
- Overrides:
containsKey
in classAbstractMap<K,V>
-
values
public Collection<V> values()
-
-