Uses of Interface
org.eclipse.collections.api.set.FixedSizeSet
-
Packages that use FixedSizeSet Package Description org.eclipse.collections.api.factory.set org.eclipse.collections.api.set This package contains interfaces for set API which enhance the performance and functionality ofSet
.org.eclipse.collections.impl.set.fixed This package contains implementations ofFixedSizeSet
. -
-
Uses of FixedSizeSet in org.eclipse.collections.api.factory.set
Methods in org.eclipse.collections.api.factory.set that return FixedSizeSet Modifier and Type Method Description <T> FixedSizeSet<T>
FixedSizeSetFactory. empty()
<T> FixedSizeSet<T>
FixedSizeSetFactory. of()
Same asFixedSizeSetFactory.empty()
.<T> FixedSizeSet<T>
FixedSizeSetFactory. of(T one)
Same asFixedSizeSetFactory.with(Object)
.<T> FixedSizeSet<T>
FixedSizeSetFactory. of(T one, T two)
<T> FixedSizeSet<T>
FixedSizeSetFactory. of(T one, T two, T three)
<T> FixedSizeSet<T>
FixedSizeSetFactory. of(T one, T two, T three, T four)
<T> FixedSizeSet<T>
FixedSizeSetFactory. with()
Same asFixedSizeSetFactory.empty()
.<T> FixedSizeSet<T>
FixedSizeSetFactory. with(T one)
<T> FixedSizeSet<T>
FixedSizeSetFactory. with(T one, T two)
<T> FixedSizeSet<T>
FixedSizeSetFactory. with(T one, T two, T three)
<T> FixedSizeSet<T>
FixedSizeSetFactory. with(T one, T two, T three, T four)
-
Uses of FixedSizeSet in org.eclipse.collections.api.set
Methods in org.eclipse.collections.api.set that return FixedSizeSet Modifier and Type Method Description FixedSizeSet<T>
FixedSizeSet. tap(Procedure<? super T> procedure)
-
Uses of FixedSizeSet in org.eclipse.collections.impl.set.fixed
Classes in org.eclipse.collections.impl.set.fixed that implement FixedSizeSet Modifier and Type Class Description (package private) class
AbstractMemoryEfficientMutableSet<T>
(package private) class
DoubletonSet<T>
(package private) class
EmptySet<T>
This class is a memory efficient list with no elements.(package private) class
QuadrupletonSet<T>
(package private) class
SingletonSet<T>
(package private) class
TripletonSet<T>
Fields in org.eclipse.collections.impl.set.fixed declared as FixedSizeSet Modifier and Type Field Description private static FixedSizeSet<?>
FixedSizeSetFactoryImpl. EMPTY_SET
Methods in org.eclipse.collections.impl.set.fixed that return FixedSizeSet Modifier and Type Method Description <T> FixedSizeSet<T>
FixedSizeSetFactoryImpl. empty()
<T> FixedSizeSet<T>
FixedSizeSetFactoryImpl. of()
<T> FixedSizeSet<T>
FixedSizeSetFactoryImpl. of(T one)
<T> FixedSizeSet<T>
FixedSizeSetFactoryImpl. of(T one, T two)
<T> FixedSizeSet<T>
FixedSizeSetFactoryImpl. of(T one, T two, T three)
<T> FixedSizeSet<T>
FixedSizeSetFactoryImpl. of(T one, T two, T three, T four)
FixedSizeSet<T>
AbstractMemoryEfficientMutableSet. tap(Procedure<? super T> procedure)
<T> FixedSizeSet<T>
FixedSizeSetFactoryImpl. with()
<T> FixedSizeSet<T>
FixedSizeSetFactoryImpl. with(T one)
<T> FixedSizeSet<T>
FixedSizeSetFactoryImpl. with(T one, T two)
<T> FixedSizeSet<T>
FixedSizeSetFactoryImpl. with(T one, T two, T three)
<T> FixedSizeSet<T>
FixedSizeSetFactoryImpl. with(T one, T two, T three, T four)
-