Uses of Interface
org.eclipse.collections.api.collection.FixedSizeCollection
-
Packages that use FixedSizeCollection Package Description org.eclipse.collections.api.collection org.eclipse.collections.api.list This package contains interfaces for list API which enhance the performance and functionality ofList
.org.eclipse.collections.api.set This package contains interfaces for set API which enhance the performance and functionality ofSet
.org.eclipse.collections.impl.list.fixed This package contains implementations of theFixedSizeList
interface.org.eclipse.collections.impl.set.fixed This package contains implementations ofFixedSizeSet
. -
-
Uses of FixedSizeCollection in org.eclipse.collections.api.collection
Methods in org.eclipse.collections.api.collection that return FixedSizeCollection Modifier and Type Method Description FixedSizeCollection<T>
FixedSizeCollection. tap(Procedure<? super T> procedure)
-
Uses of FixedSizeCollection in org.eclipse.collections.api.list
Subinterfaces of FixedSizeCollection in org.eclipse.collections.api.list Modifier and Type Interface Description interface
FixedSizeList<T>
A FixedSizeList is a list that may be mutated, but cannot grow or shrink in size. -
Uses of FixedSizeCollection in org.eclipse.collections.api.set
Subinterfaces of FixedSizeCollection in org.eclipse.collections.api.set Modifier and Type Interface Description interface
FixedSizeSet<T>
A FixedSizeSet is a set that may be mutated, but cannot grow or shrink in size. -
Uses of FixedSizeCollection in org.eclipse.collections.impl.list.fixed
Classes in org.eclipse.collections.impl.list.fixed that implement FixedSizeCollection Modifier and Type Class Description class
AbstractMemoryEfficientMutableList<T>
class
ArrayAdapter<T>
This class provides a MutableList wrapper around an array.(package private) class
DoubletonList<T>
A DoubletonList is a two-element memory efficient List.(package private) class
EmptyList<T>
This class is a memory efficient list with no elements.(package private) class
QuadrupletonList<T>
This is a four element memory efficient List which is created by calling Lists.fixedSize.of(one, two, three, four).(package private) class
QuintupletonList<T>
This is a five element memory efficient List which is created by calling Lists.fixedSize.of(one, two, three, four, five).(package private) class
SextupletonList<T>
This is a six element immutable List which is created by calling Lists.fixedSize.of(one, two, three, four, five, six).(package private) class
SingletonList<T>
This class is a memory efficient list with one element.(package private) class
TripletonList<T>
This is a three element memory efficient List which is created by calling Lists.fixedSize.of(one, two, three). -
Uses of FixedSizeCollection in org.eclipse.collections.impl.set.fixed
Classes in org.eclipse.collections.impl.set.fixed that implement FixedSizeCollection 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>
-