Uses of Interface
org.eclipse.collections.api.list.FixedSizeList
Package | Description |
---|---|
org.eclipse.collections.api.factory.list |
This package contains factory API for creating instances of type
ListIterable . |
org.eclipse.collections.api.list |
This package contains interfaces for list API which enhance the performance and functionality of
List . |
org.eclipse.collections.impl.list.fixed |
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 FixedSizeList Modifier and Type Method Description <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>
FixedSizeListFactory. ofAll(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(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 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.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(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(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(Iterable<? extends T> items)