Uses of Class
org.apache.commons.collections4.map.PredicatedMap

Packages that use PredicatedMap
org.apache.commons.collections4.map This package contains implementations of the Map, IterableMap, OrderedMap and SortedMap interfaces. 
 

Uses of PredicatedMap in org.apache.commons.collections4.map
 

Subclasses of PredicatedMap in org.apache.commons.collections4.map
 class PredicatedSortedMap<K,V>
          Decorates another SortedMap to validate that additions match a specified predicate.
 

Methods in org.apache.commons.collections4.map that return PredicatedMap
static
<K,V> PredicatedMap<K,V>
PredicatedMap.predicatedMap(Map<K,V> map, Predicate<? super K> keyPredicate, Predicate<? super V> valuePredicate)
          Factory method to create a predicated (validating) map.
 



Copyright © 2001–2013 The Apache Software Foundation. All rights reserved.