Uses of Interface
org.apache.pivot.collections.Set

Packages that use Set
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 by java.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. 
 

Uses of Set in org.apache.pivot.collections
 

Classes in org.apache.pivot.collections that implement Set
 class EnumSet<E extends Enum<E>>
          Implementation of the Set interface that is backed by an array of enum values.
 class HashSet<E>
          Implementation of the Set interface that is backed by a hash table.
 

Methods in org.apache.pivot.collections with parameters of type Set
 void SetListener.comparatorChanged(Set<E> set, Comparator<E> previousComparator)
          Called when a set's comparator has changed.
 void SetListener.Adapter.comparatorChanged(Set<E> set, Comparator<E> previousComparator)
           
 void Set.SetListenerList.comparatorChanged(Set<E> set, Comparator<E> previousComparator)
           
 void SetListener.elementAdded(Set<E> set, E element)
          Called when an element is added to a set.
 void SetListener.Adapter.elementAdded(Set<E> set, E element)
           
 void Set.SetListenerList.elementAdded(Set<E> set, E element)
           
 void SetListener.elementRemoved(Set<E> set, E element)
          Called when an element is removed from the set.
 void SetListener.Adapter.elementRemoved(Set<E> set, E element)
           
 void Set.SetListenerList.elementRemoved(Set<E> set, E element)
           
 void SetListener.setCleared(Set<E> set)
          Called when set data has been reset.
 void SetListener.Adapter.setCleared(Set<E> set)
           
 void Set.SetListenerList.setCleared(Set<E> set)
           
 

Constructors in org.apache.pivot.collections with parameters of type Set
HashSet(Set<E> set)
           
 

Uses of Set in org.apache.pivot.collections.adapter
 

Classes in org.apache.pivot.collections.adapter that implement Set
 class SetAdapter<E>
          Implementation of the Set interface that is backed by an instance of Set.
 

Uses of Set in org.apache.pivot.collections.concurrent
 

Classes in org.apache.pivot.collections.concurrent that implement Set
 class SynchronizedSet<E>
          Synchronized implementation of the Set interface.
 

Constructors in org.apache.pivot.collections.concurrent with parameters of type Set
SynchronizedSet(Set<E> set)
           
 

Uses of Set in org.apache.pivot.collections.immutable
 

Classes in org.apache.pivot.collections.immutable that implement Set
 class ImmutableSet<E>
          Unmodifiable implementation of the Set interface.
 

Constructors in org.apache.pivot.collections.immutable with parameters of type Set
ImmutableSet(Set<E> set)