Uses of Interface
components.set.Set
Packages that use Set
-
Uses of Set in components.set
Classes in components.set that implement SetModifier and TypeClassDescriptionclass
Set1L<T>
Set
represented as ajava.util.Set
with implementations of primary methods.class
Set2<T>
Set
represented as aQueue
of elements with implementations of primary methods.class
Set3<T>
Set
represented as aBinaryTree
(maintained as a binary search tree) of elements with implementations of primary methods.class
Set4<T>
Set
represented as a hash table usingSet
s for the buckets, with implementations of primary methods.class
SetSecondary<T>
Layered implementations of secondary methods forSet
.Methods in components.set that return SetModifier and TypeMethodDescriptionSet1L.newInstance()
Set2.newInstance()
Set3.newInstance()
Set4.newInstance()
Removes fromthis
all elements ofs
that are also inthis
, leavings
unchanged, and returns the elements actually removed.Methods in components.set with parameters of type SetModifier and TypeMethodDescriptionvoid
Adds tothis
all elements ofs
that are not already inthis
, also removing just those elements froms
.void
boolean
Reports whetherthis
is a subset ofs
.boolean
Removes fromthis
all elements ofs
that are also inthis
, leavings
unchanged, and returns the elements actually removed.final void
Set1L.transferFrom
(Set<T> source) final void
Set2.transferFrom
(Set<T> source) final void
Set3.transferFrom
(Set<T> source) final void
Set4.transferFrom
(Set<T> source)