Uses of Interface
org.eclipse.collections.api.list.primitive.ImmutableShortList
-
Packages that use ImmutableShortList Package Description org.eclipse.collections.api.bag.sorted This package contains interfaces for SortedBag API.org.eclipse.collections.api.factory.list.primitive This package contains factory API for creating immutable primitive list instances.org.eclipse.collections.api.list This package contains interfaces for list API which enhance the performance and functionality ofList
.org.eclipse.collections.api.list.primitive This package contains mutable and immutable primitive list API.org.eclipse.collections.api.map This package contains interfaces for map API which enhance the performance and functionality ofMap
org.eclipse.collections.api.map.sorted This package contains mutable and immutable sorted map interfaces.org.eclipse.collections.api.set.sorted This package contains interfaces for sorted set API.org.eclipse.collections.impl.bag.sorted.immutable org.eclipse.collections.impl.list.immutable This package contains implementations of theImmutableList
interface.org.eclipse.collections.impl.list.immutable.primitive This package contains implementations of immutable primitive list interfaces and immutable primitive list factory interfaces.org.eclipse.collections.impl.list.mutable.primitive This package contains implementations of the mutable primitive list interfaces.org.eclipse.collections.impl.map.sorted.immutable This package contains implementations of theMutableSortedMap
interface.org.eclipse.collections.impl.set.sorted.immutable This package contains implementations ofImmutableSortedSet
. -
-
Uses of ImmutableShortList in org.eclipse.collections.api.bag.sorted
Methods in org.eclipse.collections.api.bag.sorted that return ImmutableShortList Modifier and Type Method Description ImmutableShortList
ImmutableSortedBag. collectShort(ShortFunction<? super T> shortFunction)
-
Uses of ImmutableShortList in org.eclipse.collections.api.factory.list.primitive
Methods in org.eclipse.collections.api.factory.list.primitive that return ImmutableShortList Modifier and Type Method Description ImmutableShortList
ImmutableShortListFactory. empty()
ImmutableShortList
ImmutableShortListFactory. of()
Same asImmutableShortListFactory.empty()
.ImmutableShortList
ImmutableShortListFactory. of(short one)
ImmutableShortList
ImmutableShortListFactory. of(short... items)
ImmutableShortList
ImmutableShortListFactory. ofAll(java.lang.Iterable<java.lang.Short> iterable)
ImmutableShortList
ImmutableShortListFactory. ofAll(ShortIterable items)
ImmutableShortList
ImmutableShortListFactory. with()
Same asImmutableShortListFactory.empty()
.ImmutableShortList
ImmutableShortListFactory. with(short one)
ImmutableShortList
ImmutableShortListFactory. with(short... items)
ImmutableShortList
ImmutableShortListFactory. withAll(java.lang.Iterable<java.lang.Short> iterable)
ImmutableShortList
ImmutableShortListFactory. withAll(ShortIterable items)
-
Uses of ImmutableShortList in org.eclipse.collections.api.list
Methods in org.eclipse.collections.api.list that return ImmutableShortList Modifier and Type Method Description ImmutableShortList
ImmutableList. collectShort(ShortFunction<? super T> shortFunction)
-
Uses of ImmutableShortList in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive that return ImmutableShortList Modifier and Type Method Description ImmutableShortList
ImmutableShortList. distinct()
ImmutableShortList
ImmutableShortList. newWith(short element)
ImmutableShortList
ImmutableShortList. newWithAll(ShortIterable elements)
ImmutableShortList
ImmutableShortList. newWithout(short element)
ImmutableShortList
ImmutableShortList. newWithoutAll(ShortIterable elements)
ImmutableShortList
ImmutableShortList. reject(ShortPredicate predicate)
default ImmutableShortList
ImmutableShortList. rejectWithIndex(ShortIntPredicate predicate)
Returns a new ImmutableShortList excluding all elements with corresponding indexes matching the specified predicate.ImmutableShortList
ImmutableShortList. select(ShortPredicate predicate)
default ImmutableShortList
ImmutableShortList. selectWithIndex(ShortIntPredicate predicate)
Returns a new ImmutableShortList including all elements with corresponding indexes matching the specified predicate.ImmutableShortList
ImmutableShortList. subList(int fromIndex, int toIndex)
default ImmutableShortList
ImmutableShortList. tap(ShortProcedure procedure)
ImmutableShortList
MutableShortList. toImmutable()
Returns an immutable copy of this list.ImmutableShortList
ShortList. toImmutable()
Returns an immutable copy of this list.ImmutableShortList
ImmutableShortList. toReversed()
-
Uses of ImmutableShortList in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return ImmutableShortList Modifier and Type Method Description ImmutableShortList
ImmutableOrderedMap. collectShort(ShortFunction<? super V> shortFunction)
-
Uses of ImmutableShortList in org.eclipse.collections.api.map.sorted
Methods in org.eclipse.collections.api.map.sorted that return ImmutableShortList Modifier and Type Method Description ImmutableShortList
ImmutableSortedMap. collectShort(ShortFunction<? super V> shortFunction)
-
Uses of ImmutableShortList in org.eclipse.collections.api.set.sorted
Methods in org.eclipse.collections.api.set.sorted that return ImmutableShortList Modifier and Type Method Description ImmutableShortList
ImmutableSortedSet. collectShort(ShortFunction<? super T> shortFunction)
-
Uses of ImmutableShortList in org.eclipse.collections.impl.bag.sorted.immutable
Methods in org.eclipse.collections.impl.bag.sorted.immutable that return ImmutableShortList Modifier and Type Method Description ImmutableShortList
AbstractImmutableSortedBag. collectShort(ShortFunction<? super T> shortFunction)
-
Uses of ImmutableShortList in org.eclipse.collections.impl.list.immutable
Methods in org.eclipse.collections.impl.list.immutable that return ImmutableShortList Modifier and Type Method Description ImmutableShortList
AbstractImmutableList. collectShort(ShortFunction<? super T> shortFunction)
-
Uses of ImmutableShortList in org.eclipse.collections.impl.list.immutable.primitive
Classes in org.eclipse.collections.impl.list.immutable.primitive that implement ImmutableShortList Modifier and Type Class Description (package private) class
ImmutableShortArrayList
ImmutableShortArrayList is the non-modifiable equivalent ofShortArrayList
.(package private) class
ImmutableShortEmptyList
ImmutableShortEmptyList is an optimization forImmutableShortList
of size 0.(package private) class
ImmutableShortSingletonList
ImmutableShortSingletonList is an optimization forImmutableShortList
of size 1.Fields in org.eclipse.collections.impl.list.immutable.primitive declared as ImmutableShortList Modifier and Type Field Description (package private) static ImmutableShortList
ImmutableShortEmptyList. INSTANCE
Methods in org.eclipse.collections.impl.list.immutable.primitive that return ImmutableShortList Modifier and Type Method Description ImmutableShortList
ImmutableShortArrayList. distinct()
ImmutableShortList
ImmutableShortEmptyList. distinct()
ImmutableShortList
ImmutableShortSingletonList. distinct()
ImmutableShortList
ImmutableShortListFactoryImpl. empty()
ImmutableShortList
ImmutableShortArrayList. newWith(short element)
ImmutableShortList
ImmutableShortEmptyList. newWith(short element)
ImmutableShortList
ImmutableShortSingletonList. newWith(short element)
ImmutableShortList
ImmutableShortArrayList. newWithAll(ShortIterable elements)
ImmutableShortList
ImmutableShortEmptyList. newWithAll(ShortIterable elements)
ImmutableShortList
ImmutableShortSingletonList. newWithAll(ShortIterable elements)
ImmutableShortList
ImmutableShortArrayList. newWithout(short element)
ImmutableShortList
ImmutableShortEmptyList. newWithout(short element)
ImmutableShortList
ImmutableShortSingletonList. newWithout(short element)
ImmutableShortList
ImmutableShortArrayList. newWithoutAll(ShortIterable elements)
ImmutableShortList
ImmutableShortEmptyList. newWithoutAll(ShortIterable elements)
ImmutableShortList
ImmutableShortSingletonList. newWithoutAll(ShortIterable elements)
ImmutableShortList
ImmutableShortListFactoryImpl. of()
ImmutableShortList
ImmutableShortListFactoryImpl. of(short one)
ImmutableShortList
ImmutableShortListFactoryImpl. of(short... items)
ImmutableShortList
ImmutableShortListFactoryImpl. ofAll(java.lang.Iterable<java.lang.Short> iterable)
ImmutableShortList
ImmutableShortListFactoryImpl. ofAll(ShortIterable items)
ImmutableShortList
ImmutableShortArrayList. reject(ShortPredicate predicate)
ImmutableShortList
ImmutableShortEmptyList. reject(ShortPredicate predicate)
ImmutableShortList
ImmutableShortSingletonList. reject(ShortPredicate predicate)
ImmutableShortList
ImmutableShortArrayList. select(ShortPredicate predicate)
ImmutableShortList
ImmutableShortEmptyList. select(ShortPredicate predicate)
ImmutableShortList
ImmutableShortSingletonList. select(ShortPredicate predicate)
ImmutableShortList
ImmutableShortArrayList. subList(int fromIndex, int toIndex)
ImmutableShortList
ImmutableShortEmptyList. subList(int fromIndex, int toIndex)
ImmutableShortList
ImmutableShortSingletonList. subList(int fromIndex, int toIndex)
ImmutableShortList
ImmutableShortArrayList. toImmutable()
ImmutableShortList
ImmutableShortEmptyList. toImmutable()
ImmutableShortList
ImmutableShortSingletonList. toImmutable()
ImmutableShortList
ImmutableShortListFactoryImpl. with()
ImmutableShortList
ImmutableShortListFactoryImpl. with(short one)
ImmutableShortList
ImmutableShortListFactoryImpl. with(short... items)
ImmutableShortList
ImmutableShortListFactoryImpl. withAll(java.lang.Iterable<java.lang.Short> iterable)
ImmutableShortList
ImmutableShortListFactoryImpl. withAll(ShortIterable items)
-
Uses of ImmutableShortList in org.eclipse.collections.impl.list.mutable.primitive
Methods in org.eclipse.collections.impl.list.mutable.primitive that return ImmutableShortList Modifier and Type Method Description ImmutableShortList
ShortArrayList. toImmutable()
ImmutableShortList
SynchronizedShortList. toImmutable()
ImmutableShortList
UnmodifiableShortList. toImmutable()
-
Uses of ImmutableShortList in org.eclipse.collections.impl.map.sorted.immutable
Methods in org.eclipse.collections.impl.map.sorted.immutable that return ImmutableShortList Modifier and Type Method Description ImmutableShortList
AbstractImmutableSortedMap. collectShort(ShortFunction<? super V> shortFunction)
-
Uses of ImmutableShortList in org.eclipse.collections.impl.set.sorted.immutable
Methods in org.eclipse.collections.impl.set.sorted.immutable that return ImmutableShortList Modifier and Type Method Description ImmutableShortList
AbstractImmutableSortedSet. collectShort(ShortFunction<? super T> shortFunction)
-