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 ofMaporg.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 theImmutableListinterface.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.ordered.immutable org.eclipse.collections.impl.map.sorted.immutable This package contains implementations of theMutableSortedMapinterface.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 ImmutableShortListImmutableSortedBag. 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 ImmutableShortListImmutableShortListFactory. empty()ImmutableShortListImmutableShortListFactory. of()Same asImmutableShortListFactory.empty().ImmutableShortListImmutableShortListFactory. of(short one)ImmutableShortListImmutableShortListFactory. of(short... items)ImmutableShortListImmutableShortListFactory. ofAll(java.lang.Iterable<java.lang.Short> iterable)ImmutableShortListImmutableShortListFactory. ofAll(ShortIterable items)ImmutableShortListImmutableShortListFactory. with()Same asImmutableShortListFactory.empty().ImmutableShortListImmutableShortListFactory. with(short one)ImmutableShortListImmutableShortListFactory. with(short... items)ImmutableShortListImmutableShortListFactory. withAll(java.lang.Iterable<java.lang.Short> iterable)ImmutableShortListImmutableShortListFactory. 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 ImmutableShortListImmutableList. 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 ImmutableShortListImmutableShortList. distinct()ImmutableShortListImmutableShortList. newWith(short element)ImmutableShortListImmutableShortList. newWithAll(ShortIterable elements)ImmutableShortListImmutableShortList. newWithout(short element)ImmutableShortListImmutableShortList. newWithoutAll(ShortIterable elements)ImmutableShortListImmutableShortList. reject(ShortPredicate predicate)default ImmutableShortListImmutableShortList. rejectWithIndex(ShortIntPredicate predicate)Returns a new ImmutableShortList excluding all elements with corresponding indexes matching the specified predicate.ImmutableShortListImmutableShortList. select(ShortPredicate predicate)default ImmutableShortListImmutableShortList. selectWithIndex(ShortIntPredicate predicate)Returns a new ImmutableShortList including all elements with corresponding indexes matching the specified predicate.ImmutableShortListImmutableShortList. subList(int fromIndex, int toIndex)default ImmutableShortListImmutableShortList. tap(ShortProcedure procedure)ImmutableShortListMutableShortList. toImmutable()Returns an immutable copy of this list.ImmutableShortListShortList. toImmutable()Returns an immutable copy of this list.ImmutableShortListImmutableShortList. 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 ImmutableShortListImmutableOrderedMap. 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 ImmutableShortListImmutableSortedMap. 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 ImmutableShortListImmutableSortedSet. 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 ImmutableShortListAbstractImmutableSortedBag. 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 ImmutableShortListAbstractImmutableList. 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) classImmutableShortArrayListImmutableShortArrayList is the non-modifiable equivalent ofShortArrayList.(package private) classImmutableShortEmptyListImmutableShortEmptyList is an optimization forImmutableShortListof size 0.(package private) classImmutableShortSingletonListImmutableShortSingletonList is an optimization forImmutableShortListof size 1.Fields in org.eclipse.collections.impl.list.immutable.primitive declared as ImmutableShortList Modifier and Type Field Description (package private) static ImmutableShortListImmutableShortEmptyList. INSTANCEMethods in org.eclipse.collections.impl.list.immutable.primitive that return ImmutableShortList Modifier and Type Method Description ImmutableShortListImmutableShortArrayList. distinct()ImmutableShortListImmutableShortEmptyList. distinct()ImmutableShortListImmutableShortSingletonList. distinct()ImmutableShortListImmutableShortListFactoryImpl. empty()ImmutableShortListImmutableShortArrayList. newWith(short element)ImmutableShortListImmutableShortEmptyList. newWith(short element)ImmutableShortListImmutableShortSingletonList. newWith(short element)ImmutableShortListImmutableShortArrayList. newWithAll(ShortIterable elements)ImmutableShortListImmutableShortEmptyList. newWithAll(ShortIterable elements)ImmutableShortListImmutableShortSingletonList. newWithAll(ShortIterable elements)ImmutableShortListImmutableShortArrayList. newWithout(short element)ImmutableShortListImmutableShortEmptyList. newWithout(short element)ImmutableShortListImmutableShortSingletonList. newWithout(short element)ImmutableShortListImmutableShortArrayList. newWithoutAll(ShortIterable elements)ImmutableShortListImmutableShortEmptyList. newWithoutAll(ShortIterable elements)ImmutableShortListImmutableShortSingletonList. newWithoutAll(ShortIterable elements)ImmutableShortListImmutableShortListFactoryImpl. of()ImmutableShortListImmutableShortListFactoryImpl. of(short one)ImmutableShortListImmutableShortListFactoryImpl. of(short... items)ImmutableShortListImmutableShortListFactoryImpl. ofAll(java.lang.Iterable<java.lang.Short> iterable)ImmutableShortListImmutableShortListFactoryImpl. ofAll(ShortIterable items)ImmutableShortListImmutableShortArrayList. reject(ShortPredicate predicate)ImmutableShortListImmutableShortEmptyList. reject(ShortPredicate predicate)ImmutableShortListImmutableShortSingletonList. reject(ShortPredicate predicate)ImmutableShortListImmutableShortArrayList. select(ShortPredicate predicate)ImmutableShortListImmutableShortEmptyList. select(ShortPredicate predicate)ImmutableShortListImmutableShortSingletonList. select(ShortPredicate predicate)ImmutableShortListImmutableShortArrayList. subList(int fromIndex, int toIndex)ImmutableShortListImmutableShortEmptyList. subList(int fromIndex, int toIndex)ImmutableShortListImmutableShortSingletonList. subList(int fromIndex, int toIndex)ImmutableShortListImmutableShortArrayList. toImmutable()ImmutableShortListImmutableShortEmptyList. toImmutable()ImmutableShortListImmutableShortSingletonList. toImmutable()ImmutableShortListImmutableShortListFactoryImpl. with()ImmutableShortListImmutableShortListFactoryImpl. with(short one)ImmutableShortListImmutableShortListFactoryImpl. with(short... items)ImmutableShortListImmutableShortListFactoryImpl. withAll(java.lang.Iterable<java.lang.Short> iterable)ImmutableShortListImmutableShortListFactoryImpl. 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 ImmutableShortListShortArrayList. toImmutable()ImmutableShortListSynchronizedShortList. toImmutable()ImmutableShortListUnmodifiableShortList. toImmutable() -
Uses of ImmutableShortList in org.eclipse.collections.impl.map.ordered.immutable
Methods in org.eclipse.collections.impl.map.ordered.immutable that return ImmutableShortList Modifier and Type Method Description ImmutableShortListImmutableOrderedMapAdapter. collectShort(ShortFunction<? super V> shortFunction) -
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 ImmutableShortListAbstractImmutableSortedMap. 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 ImmutableShortListAbstractImmutableSortedSet. collectShort(ShortFunction<? super T> shortFunction)
-