Uses of Interface
org.eclipse.collections.api.list.FixedSizeList
Packages that use FixedSizeList
Package
Description
This package contains factory API for creating instances of type
ListIterable
.This package contains interfaces for list API which enhance the performance and functionality of
List
.This package contains implementations of the
FixedSizeList
interface.-
Uses of FixedSizeList in org.eclipse.collections.api.factory.list
Methods in org.eclipse.collections.api.factory.list that return FixedSizeListModifier and TypeMethodDescription<T> FixedSizeList
<T> FixedSizeListFactory.empty()
<T> FixedSizeList
<T> FixedSizeListFactory.fromStream
(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> <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> -
Uses of FixedSizeList in org.eclipse.collections.api.list
Methods in org.eclipse.collections.api.list that return FixedSizeListModifier and TypeMethodDescriptiondefault FixedSizeList
<T> FixedSizeList.sortThis()
default FixedSizeList
<T> FixedSizeList.sortThis
(Comparator<? super T> comparator) FixedSizeList.toReversed()
-
Uses of FixedSizeList in org.eclipse.collections.impl.list.fixed
Classes in org.eclipse.collections.impl.list.fixed that implement FixedSizeListModifier and TypeClassDescriptionclass
final class
ArrayAdapter<T>
This class provides a MutableList wrapper around an array.(package private) final class
A DoubletonList is a two-element memory efficient List.(package private) final class
EmptyList<T>
This class is a memory efficient list with no elements.(package private) final class
This is a four element memory efficient List which is created by calling Lists.fixedSize.of(one, two, three, four).(package private) final class
This is a five element memory efficient List which is created by calling Lists.fixedSize.of(one, two, three, four, five).(package private) final class
This is a six element immutable List which is created by calling Lists.fixedSize.of(one, two, three, four, five, six).(package private) final class
This class is a memory efficient list with one element.(package private) final class
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 FixedSizeListModifier and TypeFieldDescriptionprivate static final FixedSizeList
<?> FixedSizeListFactoryImpl.EMPTY_LIST
Methods in org.eclipse.collections.impl.list.fixed that return FixedSizeListModifier and TypeMethodDescriptionAbstractMemoryEfficientMutableList.clone()
<T> FixedSizeList
<T> FixedSizeListFactoryImpl.empty()
<T> FixedSizeList
<T> FixedSizeListFactoryImpl.fromStream
(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> AbstractMemoryEfficientMutableList.toReversed()
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> -
Uses of FixedSizeList in org.eclipse.collections.impl.tuple
Methods in org.eclipse.collections.impl.tuple that return FixedSizeListModifier and TypeMethodDescriptionstatic <T> FixedSizeList
<T> Tuples.pairToFixedSizeList
(Pair<T, T> pair) static <T> FixedSizeList
<T> Tuples.tripleToFixedSizeList
(Triple<T, T, T> triple)