|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Set | |
---|---|
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. |
Uses of Set in pivot.collections |
---|
Classes in pivot.collections that implement Set | |
---|---|
class |
EnumSet<E extends Enum<E>>
Implementation of the Set interface that is backed by a bitfield
representing enum values. |
class |
HashSet<E>
Implementation of the Set interface that is backed by a
hashtable. |
Methods in pivot.collections with parameters of type Set | |
---|---|
void |
Set.SetListenerList.comparatorChanged(Set<E> set,
java.util.Comparator<E> previousComparator)
|
void |
SetListener.comparatorChanged(Set<E> set,
java.util.Comparator<E> previousComparator)
Called when a set's comparator has changed. |
void |
Set.SetListenerList.elementAdded(Set<E> set,
E element)
|
void |
SetListener.elementAdded(Set<E> set,
E element)
Called when an element is added to a set. |
void |
Set.SetListenerList.elementRemoved(Set<E> set,
E element)
|
void |
SetListener.elementRemoved(Set<E> set,
E element)
Called when an element is removed from the set. |
void |
Set.SetListenerList.setCleared(Set<E> set)
|
void |
SetListener.setCleared(Set<E> set)
Called when set data has been reset. |
Constructors in pivot.collections with parameters of type Set | |
---|---|
HashSet(Set<E> set)
|
Uses of Set in pivot.collections.adapter |
---|
Classes in pivot.collections.adapter that implement Set | |
---|---|
class |
SetAdapter<E>
Implementation of the Set interface that is backed by an
instance of java.util.Set. |
Uses of Set in pivot.collections.concurrent |
---|
Classes in pivot.collections.concurrent that implement Set | |
---|---|
class |
SynchronizedSet<E>
Synchronized implementation of the Set interface. |
Constructors in pivot.collections.concurrent with parameters of type Set | |
---|---|
SynchronizedSet(Set<E> set)
|
Uses of Set in pivot.collections.immutable |
---|
Classes in pivot.collections.immutable that implement Set | |
---|---|
class |
ImmutableSet<E>
Unmodifiable implementation of the Set interface. |
Constructors in pivot.collections.immutable with parameters of type Set | |
---|---|
ImmutableSet(Set<E> set)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |