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 theFixedSizeListinterface.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 interfaceFixedSizeList<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 interfaceFixedSizeSet<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 classAbstractMemoryEfficientMutableList<T>classArrayAdapter<T>This class provides a MutableList wrapper around an array.(package private) classDoubletonList<T>A DoubletonList is a two-element memory efficient List.(package private) classEmptyList<T>This class is a memory efficient list with no elements.(package private) classQuadrupletonList<T>This is a four element memory efficient List which is created by calling Lists.fixedSize.of(one, two, three, four).(package private) classQuintupletonList<T>This is a five element memory efficient List which is created by calling Lists.fixedSize.of(one, two, three, four, five).(package private) classSextupletonList<T>This is a six element immutable List which is created by calling Lists.fixedSize.of(one, two, three, four, five, six).(package private) classSingletonList<T>This class is a memory efficient list with one element.(package private) classTripletonList<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) classAbstractMemoryEfficientMutableSet<T>(package private) classDoubletonSet<T>(package private) classEmptySet<T>This class is a memory efficient list with no elements.(package private) classQuadrupletonSet<T>(package private) classSingletonSet<T>(package private) classTripletonSet<T>
-