Uses of Interface
pivot.collections.Collection

Packages that use Collection
pivot.charts.content Contains classes representing chart data. 
pivot.collections Defines a set of classes and interfaces that serve as generic collections as well as the data model for UI components. 
pivot.collections.adapter Provides a set of collection implementations that are backed by java.util collections. 
pivot.collections.concurrent Contains a set of thread-safe collection implementations. 
pivot.collections.immutable Contains a set of read-only collection implementations. 
pivot.io Contains classes related to input/output operations. 
pivot.wtk.content Contains classes representing component data, such as list items or table rows. 
 

Uses of Collection in pivot.charts.content
 

Classes in pivot.charts.content that implement Collection
 class CategorySeries
          Represents series data for category chart views.
 class ValueSeries<T>
          Represents series data for value chart views.
 

Uses of Collection in pivot.collections
 

Subinterfaces of Collection in pivot.collections
 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 pivot.collections that implement Collection
 class ArrayList<T>
          Implementation of the List interface that is backed by an array.
 class ArrayQueue<T>
          Implementation of the Queue interface that is backed by an array.
 class ArrayStack<T>
          Implementation of the Stack interface that is backed by an array.
 class EnumSet<E extends Enum<E>>
          Implementation of the Set interface that is backed by a bitfield representing enum values.
 class HashMap<K,V>
          Implementation of the Map interface that is backed by a hashtable.
 class HashSet<E>
          Implementation of the Set interface that is backed by a hashtable.
 class LinkedList<T>
          Implementation of the List interface that is backed by a linked list.
 class LinkedQueue<T>
          Implementation of the Queue interface that is backed by a linked list.
 class LinkedStack<T>
          Implementation of the Stack interface that is backed by a linked list.
 

Uses of Collection in pivot.collections.adapter
 

Classes in pivot.collections.adapter that implement Collection
 class ListAdapter<T>
          Implementation of the List interface that is backed by an instance of java.util.List.
 class MapAdapter<K,V>
          Implementation of the Map interface that is backed by an instance of java.util.Map.
 class SetAdapter<E>
          Implementation of the Set interface that is backed by an instance of java.util.Set.
 

Uses of Collection in pivot.collections.concurrent
 

Classes in pivot.collections.concurrent that implement Collection
 class SynchronizedCollection<T>
          Abstract base class for synchronized collection wrappers.
 class SynchronizedList<T>
          Synchronized implementation of the List interface.
 class SynchronizedMap<K,V>
          Synchronized implementation of the Map interface.
 class SynchronizedQueue<T>
          Synchronized implementation of the Queue interface.
 class SynchronizedSet<E>
          Synchronized implementation of the Set interface.
 class SynchronizedStack<T>
          Synchronized implementation of the Stack interface.
 

Fields in pivot.collections.concurrent declared as Collection
protected  Collection<T> SynchronizedCollection.collection
           
 

Constructors in pivot.collections.concurrent with parameters of type Collection
SynchronizedCollection(Collection<T> collection)
           
 

Uses of Collection in pivot.collections.immutable
 

Classes in pivot.collections.immutable that implement Collection
 class ImmutableList<T>
          Unmodifiable implementation of the List interface.
 class ImmutableMap<K,V>
          Unmodifiable implementation of the Map interface.
 class ImmutableSet<E>
          Unmodifiable implementation of the Set interface.
 

Uses of Collection in pivot.io
 

Classes in pivot.io that implement Collection
 class FileList
          Collection representing a list of files.
 class Folder
          Class representing a folder in the file system.
 

Uses of Collection in pivot.wtk.content
 

Classes in pivot.wtk.content that implement Collection
 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.