Uses of Interface
org.pcollections.PSortedMap
-
-
Uses of PSortedMap in org.pcollections
Classes in org.pcollections that implement PSortedMap Modifier and Type Class Description classTreePMap<K,V>An implementation ofPSortedMapbased on a self-balancing binary search tree.Fields in org.pcollections declared as PSortedMap Modifier and Type Field Description private PSortedMap<java.lang.Long,E>OrderedPSet. elementsprivate PSortedMap<java.lang.Long,java.util.Map.Entry<K,V>>OrderedPMap. entriesMethods in org.pcollections that return PSortedMap Modifier and Type Method Description PSortedMap<K,V>PSortedMap. descendingMap()PSortedMap<K,V>PSortedMap. headMap(K toKey)PSortedMap<K,V>PSortedMap. headMap(K toKey, boolean inclusive)PSortedMap<K,V>PSortedMap. minus(java.lang.Object key)PSortedMap<K,V>PSortedMap. minusAll(java.util.Collection<?> keys)PSortedMap<K,V>PSortedMap. minusFirstEntry()PSortedMap<K,V>PSortedMap. minusLastEntry()PSortedMap<K,V>PSortedMap. plus(K key, V value)PSortedMap<K,V>PSortedMap. plusAll(java.util.Map<? extends K,? extends V> map)static <K extends java.lang.Comparable<? super K>,V>
PSortedMap<K,V>Empty. sortedMap()static <K,V>
PSortedMap<K,V>Empty. sortedMap(java.util.Comparator<? super K> comparator)PSortedMap<K,V>PSortedMap. subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive)PSortedMap<K,V>PSortedMap. subMap(K fromKey, K toKey)PSortedMap<K,V>PSortedMap. tailMap(K fromKey)PSortedMap<K,V>PSortedMap. tailMap(K fromKey, boolean inclusive)Constructors in org.pcollections with parameters of type PSortedMap Constructor Description OrderedPMap(PMap<K,java.lang.Long> ids, PSortedMap<java.lang.Long,java.util.Map.Entry<K,V>> entries)OrderedPSet(PMap<E,java.lang.Long> ids, PSortedMap<java.lang.Long,E> elements)
-