Uses of Interface
org.eclipse.collections.api.list.primitive.MutableShortList
| Package | Description |
|---|---|
| org.eclipse.collections.api |
This package contains interfaces for Eclipse Collections API.
|
| 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 of
List. |
| 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 of
Map |
| 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.mutable |
This package contains implementations of
MutableSortedBag. |
| org.eclipse.collections.impl.collection.mutable.primitive |
This package contains implementations of the mutable primitive collection interfaces.
|
| org.eclipse.collections.impl.lazy.primitive |
This package contains implementations of the lazy primitive iterator interfaces.
|
| org.eclipse.collections.impl.list.mutable |
This package contains implementations of the
MutableList interface. |
| org.eclipse.collections.impl.list.mutable.primitive |
This package contains implementations of the mutable primitive list interfaces.
|
| org.eclipse.collections.impl.map.mutable.primitive |
This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
|
| org.eclipse.collections.impl.map.ordered.mutable | |
| org.eclipse.collections.impl.map.sorted.mutable |
This package contains implementations of the
MutableSortedMap interface. |
| org.eclipse.collections.impl.primitive | |
| org.eclipse.collections.impl.set.sorted.mutable |
This package contains implementations of
MutableSortedSet. |
| org.eclipse.collections.impl.stack.mutable.primitive |
This package contains implementations of the mutable primitive stack interfaces.
|
| org.eclipse.collections.impl.stack.primitive | |
| org.eclipse.collections.impl.utility |
This package contains static utilities that provide iteration pattern implementations which work with JCF collections.
|
| org.eclipse.collections.impl.utility.internal |
This package contains static utilities that provide internal iteration pattern implementations which work with JCF collections.
|
-
Uses of MutableShortList in org.eclipse.collections.api
Methods in org.eclipse.collections.api that return MutableShortList Modifier and Type Method Description MutableShortListShortIterable. toList()Converts the ShortIterable to a new MutableShortList.MutableShortListShortIterable. toSortedList() -
Uses of MutableShortList in org.eclipse.collections.api.bag.sorted
Methods in org.eclipse.collections.api.bag.sorted that return MutableShortList Modifier and Type Method Description MutableShortListMutableSortedBag. collectShort(ShortFunction<? super T> shortFunction) -
Uses of MutableShortList in org.eclipse.collections.api.factory.list.primitive
Methods in org.eclipse.collections.api.factory.list.primitive that return MutableShortList Modifier and Type Method Description MutableShortListMutableShortListFactory. empty()MutableShortListMutableShortListFactory. of()Same asMutableShortListFactory.empty().MutableShortListMutableShortListFactory. of(short... items)MutableShortListMutableShortListFactory. ofAll(Iterable<Short> iterable)MutableShortListMutableShortListFactory. ofAll(ShortIterable items)MutableShortListMutableShortListFactory. with()Same asMutableShortListFactory.empty().MutableShortListMutableShortListFactory. with(short... items)Creates a new list using the passeditemsargument as the backing store.MutableShortListMutableShortListFactory. withAll(Iterable<Short> iterable)MutableShortListMutableShortListFactory. withAll(ShortIterable items)default MutableShortListMutableShortListFactory. withInitialCapacity(int capacity)Same asMutableShortListFactory.empty().default MutableShortListMutableShortListFactory. wrapCopy(short... array)Creates a new list by first copying the array passed in. -
Uses of MutableShortList in org.eclipse.collections.api.list
Methods in org.eclipse.collections.api.list that return MutableShortList Modifier and Type Method Description MutableShortListMutableList. collectShort(ShortFunction<? super T> shortFunction) -
Uses of MutableShortList in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive that return MutableShortList Modifier and Type Method Description MutableShortListMutableShortList. asSynchronized()MutableShortListMutableShortList. asUnmodifiable()MutableShortListMutableShortList. distinct()default MutableShortListMutableShortList. newEmpty()Creates a new empty mutable version of the same List type.MutableShortListMutableShortList. reject(ShortPredicate predicate)MutableShortListMutableShortList. reverseThis()MutableShortListMutableShortList. select(ShortPredicate predicate)default MutableShortListMutableShortList. shuffleThis()Randomly permutes this list mutating its contents and returns the same list (this).default MutableShortListMutableShortList. shuffleThis(Random rnd)Randomly permutes this list mutating its contents and returns the same list (this).MutableShortListMutableShortList. sortThis()Sorts this list mutating its contents and returns the same mutable list (this).default MutableShortListMutableShortList. sortThis(ShortComparator comparator)Sorts the internal data structure of this list and returns the list itself as a convenience.default <T> MutableShortListMutableShortList. sortThisBy(ShortToObjectFunction<T> function)Sorts the internal data structure of this list based on the natural order of the key returned byfunction.default <T> MutableShortListMutableShortList. sortThisBy(ShortToObjectFunction<T> function, Comparator<? super T> comparator)Sorts the internal data structure of this list based on the key returned byfunctionusing the providedcomparator.MutableShortListMutableShortList. subList(int fromIndex, int toIndex)default MutableShortListMutableShortList. tap(ShortProcedure procedure)MutableShortListMutableShortList. toReversed()MutableShortListMutableShortList. with(short element)MutableShortListMutableShortList. withAll(ShortIterable elements)MutableShortListMutableShortList. without(short element)MutableShortListMutableShortList. withoutAll(ShortIterable elements) -
Uses of MutableShortList in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return MutableShortList Modifier and Type Method Description MutableShortListMutableOrderedMap. collectShort(ShortFunction<? super V> shortFunction) -
Uses of MutableShortList in org.eclipse.collections.api.map.sorted
Methods in org.eclipse.collections.api.map.sorted that return MutableShortList Modifier and Type Method Description MutableShortListMutableSortedMap. collectShort(ShortFunction<? super V> shortFunction) -
Uses of MutableShortList in org.eclipse.collections.api.set.sorted
Methods in org.eclipse.collections.api.set.sorted that return MutableShortList Modifier and Type Method Description MutableShortListMutableSortedSet. collectShort(ShortFunction<? super T> shortFunction) -
Uses of MutableShortList in org.eclipse.collections.impl.bag.sorted.mutable
Methods in org.eclipse.collections.impl.bag.sorted.mutable that return MutableShortList Modifier and Type Method Description MutableShortListAbstractMutableSortedBag. collectShort(ShortFunction<? super T> shortFunction)MutableShortListSynchronizedSortedBag. collectShort(ShortFunction<? super T> shortFunction)MutableShortListUnmodifiableSortedBag. collectShort(ShortFunction<? super T> shortFunction) -
Uses of MutableShortList in org.eclipse.collections.impl.collection.mutable.primitive
Methods in org.eclipse.collections.impl.collection.mutable.primitive that return MutableShortList Modifier and Type Method Description MutableShortListAbstractSynchronizedShortCollection. toList()MutableShortListAbstractUnmodifiableShortCollection. toList()MutableShortListAbstractSynchronizedShortCollection. toSortedList()MutableShortListAbstractUnmodifiableShortCollection. toSortedList() -
Uses of MutableShortList in org.eclipse.collections.impl.lazy.primitive
Methods in org.eclipse.collections.impl.lazy.primitive that return MutableShortList Modifier and Type Method Description MutableShortListAbstractLazyShortIterable. toList()MutableShortListCollectShortIterable. toList()MutableShortListLazyShortIterableAdapter. toList()MutableShortListReverseShortIterable. toList()MutableShortListSelectShortIterable. toList()MutableShortListAbstractLazyShortIterable. toSortedList()MutableShortListLazyShortIterableAdapter. toSortedList() -
Uses of MutableShortList in org.eclipse.collections.impl.list.mutable
Methods in org.eclipse.collections.impl.list.mutable that return MutableShortList Modifier and Type Method Description MutableShortListAbstractListAdapter. collectShort(ShortFunction<? super T> shortFunction)MutableShortListAbstractMutableList. collectShort(ShortFunction<? super T> shortFunction)MutableShortListArrayListAdapter. collectShort(ShortFunction<? super T> shortFunction)MutableShortListFastList. collectShort(ShortFunction<? super T> shortFunction)MutableShortListMultiReaderFastList. collectShort(ShortFunction<? super T> shortFunction)MutableShortListRandomAccessListAdapter. collectShort(ShortFunction<? super T> shortFunction)MutableShortListSynchronizedMutableList. collectShort(ShortFunction<? super T> shortFunction)MutableShortListUnmodifiableMutableList. collectShort(ShortFunction<? super T> shortFunction) -
Uses of MutableShortList in org.eclipse.collections.impl.list.mutable.primitive
Classes in org.eclipse.collections.impl.list.mutable.primitive that implement MutableShortList Modifier and Type Class Description classShortArrayListShortArrayList is similar toFastList, and is memory-optimized for short primitives.classSynchronizedShortListA synchronized view of aMutableShortList.classUnmodifiableShortListThis file was automatically generated from template file unmodifiablePrimitiveList.stg.Methods in org.eclipse.collections.impl.list.mutable.primitive that return MutableShortList Modifier and Type Method Description MutableShortListShortArrayList. asSynchronized()MutableShortListSynchronizedShortList. asSynchronized()MutableShortListUnmodifiableShortList. asSynchronized()MutableShortListShortArrayList. asUnmodifiable()MutableShortListSynchronizedShortList. asUnmodifiable()MutableShortListUnmodifiableShortList. asUnmodifiable()MutableShortListShortArrayList. distinct()MutableShortListSynchronizedShortList. distinct()MutableShortListUnmodifiableShortList. distinct()MutableShortListMutableShortListFactoryImpl. empty()MutableShortListSynchronizedShortList. newEmpty()MutableShortListUnmodifiableShortList. newEmpty()MutableShortListMutableShortListFactoryImpl. of()MutableShortListMutableShortListFactoryImpl. of(short... items)MutableShortListMutableShortListFactoryImpl. ofAll(Iterable<Short> iterable)MutableShortListMutableShortListFactoryImpl. ofAll(ShortIterable items)MutableShortListSynchronizedShortList. reject(ShortPredicate predicate)MutableShortListUnmodifiableShortList. reject(ShortPredicate predicate)MutableShortListSynchronizedShortList. reverseThis()MutableShortListUnmodifiableShortList. reverseThis()MutableShortListSynchronizedShortList. select(ShortPredicate predicate)MutableShortListUnmodifiableShortList. select(ShortPredicate predicate)MutableShortListSynchronizedShortList. shuffleThis()MutableShortListSynchronizedShortList. shuffleThis(Random rnd)MutableShortListUnmodifiableShortList. shuffleThis()MutableShortListSynchronizedShortList. sortThis()MutableShortListSynchronizedShortList. sortThis(ShortComparator comparator)MutableShortListUnmodifiableShortList. sortThis()<T> MutableShortListSynchronizedShortList. sortThisBy(ShortToObjectFunction<T> function)<T> MutableShortListSynchronizedShortList. sortThisBy(ShortToObjectFunction<T> function, Comparator<? super T> comparator)MutableShortListShortArrayList. subList(int fromIndex, int toIndex)MutableShortListSynchronizedShortList. subList(int fromIndex, int toIndex)MutableShortListUnmodifiableShortList. subList(int fromIndex, int toIndex)MutableShortListSynchronizedShortList. toReversed()MutableShortListUnmodifiableShortList. toReversed()MutableShortListMutableShortListFactoryImpl. with()MutableShortListMutableShortListFactoryImpl. with(short... items)Creates a new list using the passeditemsargument as the backing store.MutableShortListMutableShortListFactoryImpl. withAll(Iterable<Short> iterable)MutableShortListMutableShortListFactoryImpl. withAll(ShortIterable items)MutableShortListMutableShortListFactoryImpl. withInitialCapacity(int capacity)Constructors in org.eclipse.collections.impl.list.mutable.primitive with parameters of type MutableShortList Constructor Description SynchronizedShortList(MutableShortList list)SynchronizedShortList(MutableShortList list, Object newLock)UnmodifiableShortList(MutableShortList list) -
Uses of MutableShortList in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableShortList Modifier and Type Method Description MutableShortListAbstractMutableShortKeySet. toList()MutableShortListObjectShortHashMap. toList()MutableShortListObjectShortHashMapWithHashingStrategy. toList()MutableShortListSynchronizedByteShortMap. toList()MutableShortListSynchronizedCharShortMap. toList()MutableShortListSynchronizedDoubleShortMap. toList()MutableShortListSynchronizedFloatShortMap. toList()MutableShortListSynchronizedIntShortMap. toList()MutableShortListSynchronizedLongShortMap. toList()MutableShortListSynchronizedObjectShortMap. toList()MutableShortListSynchronizedShortShortMap. toList()MutableShortListUnmodifiableByteShortMap. toList()MutableShortListUnmodifiableCharShortMap. toList()MutableShortListUnmodifiableDoubleShortMap. toList()MutableShortListUnmodifiableFloatShortMap. toList()MutableShortListUnmodifiableIntShortMap. toList()MutableShortListUnmodifiableLongShortMap. toList()MutableShortListUnmodifiableObjectShortMap. toList()MutableShortListUnmodifiableShortShortMap. toList()MutableShortListAbstractMutableShortKeySet. toSortedList()MutableShortListObjectShortHashMap. toSortedList()MutableShortListObjectShortHashMapWithHashingStrategy. toSortedList()MutableShortListSynchronizedByteShortMap. toSortedList()MutableShortListSynchronizedCharShortMap. toSortedList()MutableShortListSynchronizedDoubleShortMap. toSortedList()MutableShortListSynchronizedFloatShortMap. toSortedList()MutableShortListSynchronizedIntShortMap. toSortedList()MutableShortListSynchronizedLongShortMap. toSortedList()MutableShortListSynchronizedObjectShortMap. toSortedList()MutableShortListSynchronizedShortShortMap. toSortedList()MutableShortListUnmodifiableByteShortMap. toSortedList()MutableShortListUnmodifiableCharShortMap. toSortedList()MutableShortListUnmodifiableDoubleShortMap. toSortedList()MutableShortListUnmodifiableFloatShortMap. toSortedList()MutableShortListUnmodifiableIntShortMap. toSortedList()MutableShortListUnmodifiableLongShortMap. toSortedList()MutableShortListUnmodifiableObjectShortMap. toSortedList()MutableShortListUnmodifiableShortShortMap. toSortedList() -
Uses of MutableShortList in org.eclipse.collections.impl.map.ordered.mutable
Methods in org.eclipse.collections.impl.map.ordered.mutable that return MutableShortList Modifier and Type Method Description MutableShortListOrderedMapAdapter. collectShort(ShortFunction<? super V> shortFunction)MutableShortListUnmodifiableMutableOrderedMap. collectShort(ShortFunction<? super V> shortFunction) -
Uses of MutableShortList in org.eclipse.collections.impl.map.sorted.mutable
Methods in org.eclipse.collections.impl.map.sorted.mutable that return MutableShortList Modifier and Type Method Description MutableShortListAbstractMutableSortedMap. collectShort(ShortFunction<? super V> shortFunction)MutableShortListSynchronizedSortedMap. collectShort(ShortFunction<? super V> shortFunction)MutableShortListUnmodifiableTreeMap. collectShort(ShortFunction<? super V> shortFunction) -
Uses of MutableShortList in org.eclipse.collections.impl.primitive
Methods in org.eclipse.collections.impl.primitive that return MutableShortList Modifier and Type Method Description MutableShortListAbstractShortIterable. toList()MutableShortListSynchronizedShortIterable. toList()MutableShortListAbstractShortIterable. toSortedList()MutableShortListSynchronizedShortIterable. toSortedList() -
Uses of MutableShortList in org.eclipse.collections.impl.set.sorted.mutable
Methods in org.eclipse.collections.impl.set.sorted.mutable that return MutableShortList Modifier and Type Method Description MutableShortListSortedSetAdapter. collectShort(ShortFunction<? super T> shortFunction)MutableShortListSynchronizedSortedSet. collectShort(ShortFunction<? super T> shortFunction)MutableShortListTreeSortedSet. collectShort(ShortFunction<? super T> shortFunction)MutableShortListUnmodifiableSortedSet. collectShort(ShortFunction<? super T> shortFunction) -
Uses of MutableShortList in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive that return MutableShortList Modifier and Type Method Description MutableShortListSynchronizedShortStack. toList()MutableShortListUnmodifiableShortStack. toList()MutableShortListShortArrayStack. toSortedList()MutableShortListSynchronizedShortStack. toSortedList()MutableShortListUnmodifiableShortStack. toSortedList() -
Uses of MutableShortList in org.eclipse.collections.impl.stack.primitive
Methods in org.eclipse.collections.impl.stack.primitive that return MutableShortList Modifier and Type Method Description MutableShortListAbstractShortStack. toList() -
Uses of MutableShortList in org.eclipse.collections.impl.utility
Methods in org.eclipse.collections.impl.utility that return MutableShortList Modifier and Type Method Description static <T> MutableShortListArrayIterate. collectShort(T[] objectArray, ShortFunction<? super T> shortFunction)static <T> MutableShortListArrayListIterate. collectShort(ArrayList<T> list, ShortFunction<? super T> shortFunction)static <T> MutableShortListListIterate. collectShort(List<T> list, ShortFunction<? super T> shortFunction) -
Uses of MutableShortList in org.eclipse.collections.impl.utility.internal
Methods in org.eclipse.collections.impl.utility.internal that return MutableShortList Modifier and Type Method Description static <T> MutableShortListRandomAccessListIterate. collectShort(List<T> list, ShortFunction<? super T> shortFunction)