Uses of Interface
org.pcollections.PCollection
-
-
Uses of PCollection in org.pcollections
Subinterfaces of PCollection in org.pcollections Modifier and Type Interface Description interfacePBag<E>An unordered collection allowing duplicate elements.interfacePQueue<E>A persistent queue.interfacePSequence<E>An immutable, persistent indexed collection.interfacePSet<E>An immutable, persistent set, containing no duplicate elements.interfacePSortedSet<E>An immutable, persistent set of distinct elements, with elements arranged in sorted order (according to someComparator), and with various methods to obtain specific elements or ranges of elements based on this ordering (such as the least element greater than some value, or the set of elements between two values).interfacePStack<E>An immutable, persistent stack.interfacePVector<E>An immutable, persistent list.Classes in org.pcollections that implement PCollection Modifier and Type Class Description classAmortizedPQueue<E>classConsPStack<E>A simple persistent stack.classMapPBag<E>A map-backed persistent bag.classMapPSet<E>A map-backed persistent set.classOrderedPSet<E>LikePSetbut preserves insertion order.classTreePSet<E>An implementation ofPSortedSetbased on a self-balancing binary search tree.classTreePVector<E>A persistent vector of elements.Methods in org.pcollections that return PCollection Modifier and Type Method Description PCollection<E>AmortizedPQueue. minus(java.lang.Object e)PCollection<E>PCollection. minus(java.lang.Object e)PCollection<E>PQueue. minus(java.lang.Object e)PCollection<E>AmortizedPQueue. minusAll(java.util.Collection<?> list)PCollection<E>PCollection. minusAll(java.util.Collection<?> list)PCollection<E>PQueue. minusAll(java.util.Collection<?> list)PCollection<E>PCollection. plus(E e)PCollection<E>PCollection. plusAll(java.util.Collection<? extends E> list)
-