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.util
collections.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 class
BeanAdapter
Exposes Java bean properties of an object via theMap
interface. -
Uses of Collection in org.apache.pivot.charts.content
Classes in org.apache.pivot.charts.content that implement Collection Modifier and Type Class Description class
CategorySeries
Represents series data for category chart views.class
HistogramSeries<T>
class
ValueSeries<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 interface
List<T>
Collection interface representing an ordered sequence of items.interface
Map<K,V>
Collection interface representing set of key/value pairs.interface
Queue<T>
Interface representing a first-in, first-out (FIFO) queue when unsorted, and a priority queue when sorted.interface
Set<E>
Collection interface representing a group of unique elements.interface
Stack<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 class
ArrayList<T>
Implementation of theList
interface that is backed by an array.class
ArrayQueue<T>
class
ArrayStack<T>
class
EnumList<E extends java.lang.Enum<E>>
A read-only implementation of theList
interface that is backed by an enum.class
EnumMap<E extends java.lang.Enum<E>,V>
Implementation of theMap
interface whose keys are backed by an enum.class
EnumSet<E extends java.lang.Enum<E>>
Implementation of theSet
interface that is backed by an array of enum values.class
HashMap<K,V>
Implementation of theMap
interface that is backed by a hash table.class
HashSet<E>
Implementation of theSet
interface that is backed by a hash table.class
LinkedList<T>
Implementation of theList
interface that is backed by a linked list.class
LinkedQueue<T>
Implementation of theQueue
interface that is backed by a linked list.class
LinkedStack<T>
Implementation of theStack
interface that is backed by a linked list.Methods in org.apache.pivot.collections with parameters of type Collection Modifier and Type Method Description boolean
EnumSet. addAll(Collection<E> c)
Adds all the elements of the given collection of this enum to this set.default void
Sequence. 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 class
ListAdapter<T>
Implementation of theList
interface that is backed by an instance ofList
; in other words, adapting ajava.util.List
to one of ourList
s.class
MapAdapter<K,V>
Implementation of theMap
interface that is backed by an instance ofMap
.class
SetAdapter<E>
Implementation of theSet
interface 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 class
SynchronizedList<T>
Synchronized implementation of theList
interface.class
SynchronizedMap<K,V>
Synchronized implementation of theMap
interface.class
SynchronizedQueue<T>
Synchronized implementation of theQueue
interface.class
SynchronizedSet<E>
Synchronized implementation of theSet
interface.class
SynchronizedStack<T>
Synchronized implementation of theStack
interface. -
Uses of Collection in org.apache.pivot.collections.immutable
Classes in org.apache.pivot.collections.immutable that implement Collection Modifier and Type Class Description class
ImmutableList<T>
Unmodifiable implementation of theList
interface.class
ImmutableMap<K,V>
Unmodifiable implementation of theMap
interface.class
ImmutableSet<E>
Unmodifiable implementation of theSet
interface. -
Uses of Collection in org.apache.pivot.io
Classes in org.apache.pivot.io that implement Collection Modifier and Type Class Description class
FileList
Collection representing a list of files.class
FileObjectList
Collection 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 class
ResultList
Implementation of theList
interface 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 class
CalendarDateSpinnerData
Spinner data model that presents a bounded list of calendar dates.class
NumericSpinnerData
Spinner data model that presents a bounded list of integers.class
TreeBranch
Default 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 class
Element
Node class representing an XML element.
-