Uses of Class
org.apache.commons.collections4.map.AbstractInputCheckedMapDecorator
-
Packages that use AbstractInputCheckedMapDecorator Package Description org.apache.commons.collections4.map -
-
Uses of AbstractInputCheckedMapDecorator in org.apache.commons.collections4.map
Subclasses of AbstractInputCheckedMapDecorator in org.apache.commons.collections4.map Modifier and Type Class Description class
PredicatedMap<K,V>
Decorates anotherMap
to validate that additions match a specified predicate.class
PredicatedSortedMap<K,V>
Decorates anotherSortedMap
to validate that additions match a specified predicate.class
TransformedMap<K,V>
Decorates anotherMap
to transform objects that are added.class
TransformedSortedMap<K,V>
Decorates anotherSortedMap
to transform objects that are added.Fields in org.apache.commons.collections4.map declared as AbstractInputCheckedMapDecorator Modifier and Type Field Description private AbstractInputCheckedMapDecorator<K,V>
AbstractInputCheckedMapDecorator.EntrySet. parent
The parent mapprivate AbstractInputCheckedMapDecorator<K,V>
AbstractInputCheckedMapDecorator.EntrySetIterator. parent
The parent mapprivate AbstractInputCheckedMapDecorator<K,V>
AbstractInputCheckedMapDecorator.MapEntry. parent
The parent mapConstructors in org.apache.commons.collections4.map with parameters of type AbstractInputCheckedMapDecorator Constructor Description EntrySet(java.util.Set<java.util.Map.Entry<K,V>> set, AbstractInputCheckedMapDecorator<K,V> parent)
EntrySetIterator(java.util.Iterator<java.util.Map.Entry<K,V>> iterator, AbstractInputCheckedMapDecorator<K,V> parent)
MapEntry(java.util.Map.Entry<K,V> entry, AbstractInputCheckedMapDecorator<K,V> parent)
-