Uses of Interface
org.apache.pivot.collections.Collection
-
Packages that use Collection Package Description org.apache.pivot.beans Contains classes for manipulating and interacting with Java Bean types.org.apache.pivot.charts.content Contains classes representing chart data.org.apache.pivot.collections Defines a set of classes and interfaces that serve as generic collections as well as the data model for UI components.org.apache.pivot.collections.adapter Provides a set of collection implementations that are backed byjava.utilcollections.org.apache.pivot.collections.concurrent Contains a set of thread-safe collection implementations.org.apache.pivot.collections.immutable Contains a set of read-only collection implementations.org.apache.pivot.io Contains classes related to input/output operations.org.apache.pivot.sql Contains classes for working with SQL data.org.apache.pivot.wtk.content Contains classes representing component data, such as list items or table rows.org.apache.pivot.xml Contains classes that facilitate interaction with an XML DOM. -
-
Uses of Collection in org.apache.pivot.beans
Classes in org.apache.pivot.beans that implement Collection Modifier and Type Class Description classBeanAdapterExposes Java bean properties of an object via theMapinterface. -
Uses of Collection in org.apache.pivot.charts.content
Classes in org.apache.pivot.charts.content that implement Collection Modifier and Type Class Description classCategorySeriesRepresents series data for category chart views.classHistogramSeries<T>classValueSeries<T>Represents series data for value chart views. -
Uses of Collection in org.apache.pivot.collections
Subinterfaces of Collection in org.apache.pivot.collections Modifier and Type Interface Description interfaceList<T>Collection interface representing an ordered sequence of items.interfaceMap<K,V>Collection interface representing set of key/value pairs.interfaceQueue<T>Interface representing a first-in, first-out (FIFO) queue when unsorted, and a priority queue when sorted.interfaceSet<E>Collection interface representing a group of unique elements.interfaceStack<T>Interface representing a last-in, first-out (LIFO) stack when unsorted, and a priority stack when sorted.Classes in org.apache.pivot.collections that implement Collection Modifier and Type Class Description classArrayList<T>Implementation of theListinterface that is backed by an array.classArrayQueue<T>classArrayStack<T>classEnumList<E extends java.lang.Enum<E>>A read-only implementation of theListinterface that is backed by an enum.classEnumMap<E extends java.lang.Enum<E>,V>Implementation of theMapinterface whose keys are backed by an enum.classEnumSet<E extends java.lang.Enum<E>>Implementation of theSetinterface that is backed by an array of enum values.classHashMap<K,V>Implementation of theMapinterface that is backed by a hash table.classHashSet<E>Implementation of theSetinterface that is backed by a hash table.classLinkedList<T>Implementation of theListinterface that is backed by a linked list.classLinkedQueue<T>Implementation of theQueueinterface that is backed by a linked list.classLinkedStack<T>Implementation of theStackinterface that is backed by a linked list.Methods in org.apache.pivot.collections with parameters of type Collection Modifier and Type Method Description booleanEnumSet. addAll(Collection<E> c)Adds all the elements of the given collection of this enum to this set.default voidSequence. addAll(Collection<T> c)Add all the elements of the given collection to this sequence using theSequence.add(T)method of this interface. -
Uses of Collection in org.apache.pivot.collections.adapter
Classes in org.apache.pivot.collections.adapter that implement Collection Modifier and Type Class Description classListAdapter<T>Implementation of theListinterface that is backed by an instance ofList; in other words, adapting ajava.util.Listto one of ourLists.classMapAdapter<K,V>Implementation of theMapinterface that is backed by an instance ofMap.classSetAdapter<E>Implementation of theSetinterface that is backed by an instance ofSet. -
Uses of Collection in org.apache.pivot.collections.concurrent
Classes in org.apache.pivot.collections.concurrent that implement Collection Modifier and Type Class Description classSynchronizedList<T>Synchronized implementation of theListinterface.classSynchronizedMap<K,V>Synchronized implementation of theMapinterface.classSynchronizedQueue<T>Synchronized implementation of theQueueinterface.classSynchronizedSet<E>Synchronized implementation of theSetinterface.classSynchronizedStack<T>Synchronized implementation of theStackinterface. -
Uses of Collection in org.apache.pivot.collections.immutable
Classes in org.apache.pivot.collections.immutable that implement Collection Modifier and Type Class Description classImmutableList<T>Unmodifiable implementation of theListinterface.classImmutableMap<K,V>Unmodifiable implementation of theMapinterface.classImmutableSet<E>Unmodifiable implementation of theSetinterface. -
Uses of Collection in org.apache.pivot.io
Classes in org.apache.pivot.io that implement Collection Modifier and Type Class Description classFileListCollection representing a list of files.classFileObjectListCollection representing a list of files. -
Uses of Collection in org.apache.pivot.sql
Classes in org.apache.pivot.sql that implement Collection Modifier and Type Class Description classResultListImplementation of theListinterface that is backed by a instance ofResultSet. -
Uses of Collection in org.apache.pivot.wtk.content
Classes in org.apache.pivot.wtk.content that implement Collection Modifier and Type Class Description classCalendarDateSpinnerDataSpinner data model that presents a bounded list of calendar dates.classNumericSpinnerDataSpinner data model that presents a bounded list of integers.classTreeBranchDefault tree branch implementation. -
Uses of Collection in org.apache.pivot.xml
Classes in org.apache.pivot.xml that implement Collection Modifier and Type Class Description classElementNode class representing an XML element.
-