Uses of Interface
org.eclipse.collections.api.list.FixedSizeList
-
Packages that use FixedSizeList Package Description org.eclipse.collections.api.factory.list This package contains factory API for creating instances of typeListIterable
.org.eclipse.collections.api.list This package contains interfaces for list API which enhance the performance and functionality ofList
.org.eclipse.collections.impl.list.fixed This package contains implementations of theFixedSizeList
interface.org.eclipse.collections.impl.tuple -
-
Uses of FixedSizeList in org.eclipse.collections.api.factory.list
Methods in org.eclipse.collections.api.factory.list that return FixedSizeList Modifier and Type Method Description <T> FixedSizeList<T>
FixedSizeListFactory. empty()
<T> FixedSizeList<T>
FixedSizeListFactory. fromStream(java.util.stream.Stream<? extends T> stream)
<T> FixedSizeList<T>
FixedSizeListFactory. of()
Same asFixedSizeListFactory.empty()
.<T> FixedSizeList<T>
FixedSizeListFactory. of(T one)
Same asFixedSizeListFactory.with(Object)
.<T> FixedSizeList<T>
FixedSizeListFactory. of(T... items)
<T> FixedSizeList<T>
FixedSizeListFactory. of(T one, T two)
<T> FixedSizeList<T>
FixedSizeListFactory. of(T one, T two, T three)
<T> FixedSizeList<T>
FixedSizeListFactory. of(T one, T two, T three, T four)
<T> FixedSizeList<T>
FixedSizeListFactory. of(T one, T two, T three, T four, T five)
<T> FixedSizeList<T>
FixedSizeListFactory. of(T one, T two, T three, T four, T five, T six)
<T> FixedSizeList<T>
FixedSizeListFactory. ofAll(java.lang.Iterable<? extends T> items)
<T> FixedSizeList<T>
FixedSizeListFactory. with()
Same asFixedSizeListFactory.empty()
.<T> FixedSizeList<T>
FixedSizeListFactory. with(T one)
<T> FixedSizeList<T>
FixedSizeListFactory. with(T... items)
<T> FixedSizeList<T>
FixedSizeListFactory. with(T one, T two)
<T> FixedSizeList<T>
FixedSizeListFactory. with(T one, T two, T three)
<T> FixedSizeList<T>
FixedSizeListFactory. with(T one, T two, T three, T four)
<T> FixedSizeList<T>
FixedSizeListFactory. with(T one, T two, T three, T four, T five)
<T> FixedSizeList<T>
FixedSizeListFactory. with(T one, T two, T three, T four, T five, T six)
<T> FixedSizeList<T>
FixedSizeListFactory. withAll(java.lang.Iterable<? extends T> items)
-
Uses of FixedSizeList in org.eclipse.collections.api.list
Methods in org.eclipse.collections.api.list that return FixedSizeList Modifier and Type Method Description default FixedSizeList<T>
FixedSizeList. sortThis()
default FixedSizeList<T>
FixedSizeList. sortThis(java.util.Comparator<? super T> comparator)
FixedSizeList<T>
FixedSizeList. tap(Procedure<? super T> procedure)
FixedSizeList<T>
FixedSizeList. toReversed()
-
Uses of FixedSizeList in org.eclipse.collections.impl.list.fixed
Classes in org.eclipse.collections.impl.list.fixed that implement FixedSizeList 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).Fields in org.eclipse.collections.impl.list.fixed declared as FixedSizeList Modifier and Type Field Description private static FixedSizeList<?>
FixedSizeListFactoryImpl. EMPTY_LIST
Methods in org.eclipse.collections.impl.list.fixed that return FixedSizeList Modifier and Type Method Description FixedSizeList<T>
AbstractMemoryEfficientMutableList. clone()
<T> FixedSizeList<T>
FixedSizeListFactoryImpl. empty()
<T> FixedSizeList<T>
FixedSizeListFactoryImpl. fromStream(java.util.stream.Stream<? extends T> stream)
<T> FixedSizeList<T>
FixedSizeListFactoryImpl. of()
<T> FixedSizeList<T>
FixedSizeListFactoryImpl. of(T one)
<T> FixedSizeList<T>
FixedSizeListFactoryImpl. of(T... items)
<T> FixedSizeList<T>
FixedSizeListFactoryImpl. of(T one, T two)
<T> FixedSizeList<T>
FixedSizeListFactoryImpl. of(T one, T two, T three)
<T> FixedSizeList<T>
FixedSizeListFactoryImpl. of(T one, T two, T three, T four)
<T> FixedSizeList<T>
FixedSizeListFactoryImpl. of(T one, T two, T three, T four, T five)
<T> FixedSizeList<T>
FixedSizeListFactoryImpl. of(T one, T two, T three, T four, T five, T six)
<T> FixedSizeList<T>
FixedSizeListFactoryImpl. ofAll(java.lang.Iterable<? extends T> items)
FixedSizeList<T>
AbstractMemoryEfficientMutableList. tap(Procedure<? super T> procedure)
FixedSizeList<T>
ArrayAdapter. tap(Procedure<? super T> procedure)
FixedSizeList<T>
AbstractMemoryEfficientMutableList. toReversed()
FixedSizeList<T>
ArrayAdapter. toReversed()
<T> FixedSizeList<T>
FixedSizeListFactoryImpl. with()
<T> FixedSizeList<T>
FixedSizeListFactoryImpl. with(T one)
<T> FixedSizeList<T>
FixedSizeListFactoryImpl. with(T... items)
<T> FixedSizeList<T>
FixedSizeListFactoryImpl. with(T one, T two)
<T> FixedSizeList<T>
FixedSizeListFactoryImpl. with(T one, T two, T three)
<T> FixedSizeList<T>
FixedSizeListFactoryImpl. with(T one, T two, T three, T four)
<T> FixedSizeList<T>
FixedSizeListFactoryImpl. with(T one, T two, T three, T four, T five)
<T> FixedSizeList<T>
FixedSizeListFactoryImpl. with(T one, T two, T three, T four, T five, T six)
<T> FixedSizeList<T>
FixedSizeListFactoryImpl. withAll(java.lang.Iterable<? extends T> items)
-
Uses of FixedSizeList in org.eclipse.collections.impl.tuple
Methods in org.eclipse.collections.impl.tuple that return FixedSizeList Modifier and Type Method Description static <T> FixedSizeList<T>
Tuples. pairToFixedSizeList(Pair<T,T> pair)
static <T> FixedSizeList<T>
Tuples. tripleToFixedSizeList(Triple<T,T,T> triple)
-