Uses of Interface
org.eclipse.collections.api.list.primitive.MutableShortList
Packages that use MutableShortList
Package
Description
This package contains interfaces for Eclipse Collections API.
This package contains interfaces for SortedBag API.
This package contains factory API for creating immutable primitive list instances.
This package contains interfaces for list API which enhance the performance and functionality of
List.This package contains mutable and immutable primitive list API.
This package contains interfaces for map API which enhance the performance and functionality of
MapThis package contains mutable and immutable sorted map interfaces.
This package contains interfaces for sorted set API.
This package contains implementations of the immutable primitive bag interfaces.
This package contains implementations of
MutableSortedBag.This package contains implementations of the mutable primitive collection interfaces.
This package contains implementations of the lazy primitive iterator interfaces.
This package contains implementations of immutable primitive list interfaces and immutable primitive list factory interfaces.
This package contains implementations of the
MutableList interface.This package contains implementations of the mutable primitive list interfaces.
This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the
MutableSortedMap interface.This package contains implementations of the immutable primitive set interfaces.
This package contains implementations of
MutableSortedSet.This package contains implementations of the immutable primitive stack interfaces.
This package contains implementations of the mutable primitive stack interfaces.
This package contains static utilities that provide iteration pattern implementations which work with JCF collections.
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 MutableShortListModifier and TypeMethodDescriptionShortIterable.toList()Converts the ShortIterable to a new MutableShortList.ShortIterable.toSortedList()default MutableShortListShortIterable.toSortedList(ShortComparator comparator) Converts the collection to a MutableShortList implementation sorted using the provided comparator.default <T> MutableShortListShortIterable.toSortedListBy(ShortToObjectFunction<T> function) Converts the collection to a MutableShortListImplementation sorted based on the natural order of the key returned byfunction.default <T> MutableShortListShortIterable.toSortedListBy(ShortToObjectFunction<T> function, Comparator<? super T> comparator) Converts the collection to a MutableShortList implementation, which is sorted based on the key returned byfunctionusing the providedcomparator. -
Uses of MutableShortList in org.eclipse.collections.api.bag.sorted
Methods in org.eclipse.collections.api.bag.sorted that return MutableShortListModifier and TypeMethodDescriptionMutableSortedBag.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 MutableShortListModifier and TypeMethodDescriptionMutableShortListFactory.empty()MutableShortListFactory.of()Same asMutableShortListFactory.empty().MutableShortListFactory.of(short... items) MutableShortListFactory.ofAll(ShortIterable items) MutableShortListFactory.with()Same asMutableShortListFactory.empty().MutableShortListFactory.with(short... items) Creates a new list using the passeditemsargument as the backing store.MutableShortListFactory.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 MutableShortListModifier and TypeMethodDescriptiondefault 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 MutableShortListModifier and TypeMethodDescriptionMutableShortList.asSynchronized()MutableShortList.asUnmodifiable()MutableShortList.distinct()default MutableShortListMutableShortList.newEmpty()Creates a new empty mutable version of the same List type.MutableShortList.reject(ShortPredicate predicate) default MutableShortListMutableShortList.rejectWithIndex(ShortIntPredicate predicate) Returns a new MutableShortList excluding all elements with corresponding indexes matching the specified predicate.MutableShortList.reverseThis()MutableShortList.select(ShortPredicate predicate) default MutableShortListMutableShortList.selectWithIndex(ShortIntPredicate predicate) Returns a new MutableShortList including all elements with corresponding indexes matching the specified 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).MutableShortList.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.MutableShortList.subList(int fromIndex, int toIndex) default MutableShortListMutableShortList.tap(ShortProcedure procedure) MutableShortList.toReversed()MutableShortList.with(short element) MutableShortList.withAll(ShortIterable elements) MutableShortList.without(short element) MutableShortList.withoutAll(ShortIterable elements) -
Uses of MutableShortList in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return MutableShortListModifier and TypeMethodDescriptionMutableOrderedMap.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 MutableShortListModifier and TypeMethodDescriptionMutableSortedMap.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 MutableShortListModifier and TypeMethodDescriptionMutableSortedSet.collectShort(ShortFunction<? super T> shortFunction) -
Uses of MutableShortList in org.eclipse.collections.impl.bag.immutable.primitive
Methods in org.eclipse.collections.impl.bag.immutable.primitive that return MutableShortListModifier and TypeMethodDescriptionImmutableShortEmptyBag.toList()ImmutableShortHashBag.toList()ImmutableShortSingletonBag.toList()ImmutableShortEmptyBag.toSortedList()ImmutableShortHashBag.toSortedList()ImmutableShortSingletonBag.toSortedList() -
Uses of MutableShortList in org.eclipse.collections.impl.bag.sorted.mutable
Methods in org.eclipse.collections.impl.bag.sorted.mutable that return MutableShortListModifier and TypeMethodDescriptionAbstractMutableSortedBag.collectShort(ShortFunction<? super T> shortFunction) SynchronizedSortedBag.collectShort(ShortFunction<? super T> shortFunction) UnmodifiableSortedBag.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 MutableShortListModifier and TypeMethodDescriptionAbstractSynchronizedShortCollection.toList()AbstractUnmodifiableShortCollection.toList()AbstractSynchronizedShortCollection.toSortedList()AbstractUnmodifiableShortCollection.toSortedList() -
Uses of MutableShortList in org.eclipse.collections.impl.lazy.primitive
Methods in org.eclipse.collections.impl.lazy.primitive that return MutableShortListModifier and TypeMethodDescriptionAbstractLazyShortIterable.toList()CollectShortIterable.toList()LazyShortIterableAdapter.toList()ReverseShortIterable.toList()SelectShortIterable.toList()AbstractLazyShortIterable.toSortedList()LazyShortIterableAdapter.toSortedList() -
Uses of MutableShortList in org.eclipse.collections.impl.list.immutable.primitive
Methods in org.eclipse.collections.impl.list.immutable.primitive that return MutableShortListModifier and TypeMethodDescriptionImmutableShortArrayList.toList()ImmutableShortEmptyList.toList()ImmutableShortSingletonList.toList()ImmutableShortArrayList.toSortedList()ImmutableShortEmptyList.toSortedList()ImmutableShortSingletonList.toSortedList() -
Uses of MutableShortList in org.eclipse.collections.impl.list.mutable
Methods in org.eclipse.collections.impl.list.mutable that return MutableShortListModifier and TypeMethodDescriptionMultiReaderFastList.collectShort(ShortFunction<? super T> shortFunction) MultiReaderFastList.UntouchableMutableList.collectShort(ShortFunction<? super T> shortFunction) SynchronizedMutableList.collectShort(ShortFunction<? super T> shortFunction) UnmodifiableMutableList.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 MutableShortListModifier and TypeClassDescriptionclassShortArrayList is similar to FastList, and is memory-optimized for short primitives.classA synchronized view of aMutableShortList.classThis file was automatically generated from template file unmodifiablePrimitiveList.stg.Fields in org.eclipse.collections.impl.list.mutable.primitive declared as MutableShortListMethods in org.eclipse.collections.impl.list.mutable.primitive that return MutableShortListModifier and TypeMethodDescriptionShortArrayList.asSynchronized()SynchronizedShortList.asSynchronized()UnmodifiableShortList.asSynchronized()ShortArrayList.asUnmodifiable()SynchronizedShortList.asUnmodifiable()UnmodifiableShortList.asUnmodifiable()ShortArrayList.distinct()SynchronizedShortList.distinct()UnmodifiableShortList.distinct()MutableShortListFactoryImpl.empty()private MutableShortListSynchronizedShortList.getMutableShortList()private MutableShortListUnmodifiableShortList.getMutableShortList()SynchronizedShortList.newEmpty()UnmodifiableShortList.newEmpty()MutableShortListFactoryImpl.of()MutableShortListFactoryImpl.of(short... items) MutableShortListFactoryImpl.ofAll(ShortIterable items) SynchronizedShortList.reject(ShortPredicate predicate) UnmodifiableShortList.reject(ShortPredicate predicate) SynchronizedShortList.rejectWithIndex(ShortIntPredicate predicate) Returns a new MutableShortList excluding all elements with corresponding indexes matching the specified predicate.UnmodifiableShortList.rejectWithIndex(ShortIntPredicate predicate) Returns a new MutableShortList excluding all elements with corresponding indexes matching the specified predicate.SynchronizedShortList.reverseThis()UnmodifiableShortList.reverseThis()SynchronizedShortList.select(ShortPredicate predicate) UnmodifiableShortList.select(ShortPredicate predicate) SynchronizedShortList.selectWithIndex(ShortIntPredicate predicate) Returns a new MutableShortList including all elements with corresponding indexes matching the specified predicate.UnmodifiableShortList.selectWithIndex(ShortIntPredicate predicate) Returns a new MutableShortList including all elements with corresponding indexes matching the specified predicate.SynchronizedShortList.shuffleThis()SynchronizedShortList.shuffleThis(Random rnd) UnmodifiableShortList.shuffleThis()SynchronizedShortList.sortThis()SynchronizedShortList.sortThis(ShortComparator comparator) UnmodifiableShortList.sortThis()<T> MutableShortListSynchronizedShortList.sortThisBy(ShortToObjectFunction<T> function) <T> MutableShortListSynchronizedShortList.sortThisBy(ShortToObjectFunction<T> function, Comparator<? super T> comparator) ShortArrayList.subList(int fromIndex, int toIndex) SynchronizedShortList.subList(int fromIndex, int toIndex) UnmodifiableShortList.subList(int fromIndex, int toIndex) SynchronizedShortList.toReversed()UnmodifiableShortList.toReversed()MutableShortListFactoryImpl.with()MutableShortListFactoryImpl.with(short... items) Creates a new list using the passeditemsargument as the backing store.MutableShortListFactoryImpl.withAll(ShortIterable items) MutableShortListFactoryImpl.withInitialCapacity(int capacity) Constructors in org.eclipse.collections.impl.list.mutable.primitive with parameters of type MutableShortListModifierConstructorDescriptionBoxedMutableShortList(MutableShortList delegate) SynchronizedShortList(MutableShortList list, Object newLock) -
Uses of MutableShortList in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive that return MutableShortListModifier and TypeMethodDescriptionImmutableByteShortEmptyMap.toList()ImmutableByteShortHashMap.toList()ImmutableByteShortSingletonMap.toList()ImmutableCharShortEmptyMap.toList()ImmutableCharShortHashMap.toList()ImmutableCharShortSingletonMap.toList()ImmutableDoubleShortEmptyMap.toList()ImmutableDoubleShortHashMap.toList()ImmutableDoubleShortSingletonMap.toList()ImmutableFloatShortEmptyMap.toList()ImmutableFloatShortHashMap.toList()ImmutableFloatShortSingletonMap.toList()ImmutableIntShortEmptyMap.toList()ImmutableIntShortHashMap.toList()ImmutableIntShortSingletonMap.toList()ImmutableLongShortEmptyMap.toList()ImmutableLongShortHashMap.toList()ImmutableLongShortSingletonMap.toList()ImmutableObjectShortEmptyMap.toList()ImmutableObjectShortHashMap.toList()ImmutableObjectShortSingletonMap.toList()ImmutableShortShortEmptyMap.toList()ImmutableShortShortHashMap.toList()ImmutableShortShortSingletonMap.toList()ImmutableByteShortEmptyMap.toSortedList()ImmutableByteShortHashMap.toSortedList()ImmutableByteShortSingletonMap.toSortedList()ImmutableCharShortEmptyMap.toSortedList()ImmutableCharShortHashMap.toSortedList()ImmutableCharShortSingletonMap.toSortedList()ImmutableDoubleShortEmptyMap.toSortedList()ImmutableDoubleShortHashMap.toSortedList()ImmutableDoubleShortSingletonMap.toSortedList()ImmutableFloatShortEmptyMap.toSortedList()ImmutableFloatShortHashMap.toSortedList()ImmutableFloatShortSingletonMap.toSortedList()ImmutableIntShortEmptyMap.toSortedList()ImmutableIntShortHashMap.toSortedList()ImmutableIntShortSingletonMap.toSortedList()ImmutableLongShortEmptyMap.toSortedList()ImmutableLongShortHashMap.toSortedList()ImmutableLongShortSingletonMap.toSortedList()ImmutableObjectShortEmptyMap.toSortedList()ImmutableObjectShortHashMap.toSortedList()ImmutableObjectShortSingletonMap.toSortedList()ImmutableShortShortEmptyMap.toSortedList()ImmutableShortShortHashMap.toSortedList()ImmutableShortShortSingletonMap.toSortedList() -
Uses of MutableShortList in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableShortListModifier and TypeMethodDescriptionAbstractMutableShortKeySet.toList()AbstractMutableShortValuesMap.AbstractShortValuesCollection.toList()ObjectShortHashMap.toList()ObjectShortHashMap.ValuesCollection.toList()ObjectShortHashMapWithHashingStrategy.toList()ObjectShortHashMapWithHashingStrategy.ValuesCollection.toList()ShortBooleanHashMap.KeysView.toList()SynchronizedByteShortMap.toList()SynchronizedCharShortMap.toList()SynchronizedDoubleShortMap.toList()SynchronizedFloatShortMap.toList()SynchronizedIntShortMap.toList()SynchronizedLongShortMap.toList()SynchronizedObjectShortMap.toList()SynchronizedShortShortMap.toList()UnmodifiableByteShortMap.toList()UnmodifiableCharShortMap.toList()UnmodifiableDoubleShortMap.toList()UnmodifiableFloatShortMap.toList()UnmodifiableIntShortMap.toList()UnmodifiableLongShortMap.toList()UnmodifiableObjectShortMap.toList()UnmodifiableShortShortMap.toList()AbstractMutableShortKeySet.toSortedList()AbstractMutableShortValuesMap.AbstractShortValuesCollection.toSortedList()ObjectShortHashMap.toSortedList()ObjectShortHashMap.ValuesCollection.toSortedList()ObjectShortHashMapWithHashingStrategy.toSortedList()ObjectShortHashMapWithHashingStrategy.ValuesCollection.toSortedList()SynchronizedByteShortMap.toSortedList()SynchronizedCharShortMap.toSortedList()SynchronizedDoubleShortMap.toSortedList()SynchronizedFloatShortMap.toSortedList()SynchronizedIntShortMap.toSortedList()SynchronizedLongShortMap.toSortedList()SynchronizedObjectShortMap.toSortedList()SynchronizedShortShortMap.toSortedList()UnmodifiableByteShortMap.toSortedList()UnmodifiableCharShortMap.toSortedList()UnmodifiableDoubleShortMap.toSortedList()UnmodifiableFloatShortMap.toSortedList()UnmodifiableIntShortMap.toSortedList()UnmodifiableLongShortMap.toSortedList()UnmodifiableObjectShortMap.toSortedList()UnmodifiableShortShortMap.toSortedList() -
Uses of MutableShortList in org.eclipse.collections.impl.map.ordered.mutable
Methods in org.eclipse.collections.impl.map.ordered.mutable that return MutableShortListModifier and TypeMethodDescriptionOrderedMapAdapter.collectShort(ShortFunction<? super V> shortFunction) UnmodifiableMutableOrderedMap.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 MutableShortListModifier and TypeMethodDescriptionAbstractMutableSortedMap.collectShort(ShortFunction<? super V> shortFunction) SynchronizedSortedMap.collectShort(ShortFunction<? super V> shortFunction) UnmodifiableTreeMap.collectShort(ShortFunction<? super V> shortFunction) -
Uses of MutableShortList in org.eclipse.collections.impl.primitive
Methods in org.eclipse.collections.impl.primitive that return MutableShortListModifier and TypeMethodDescriptionAbstractShortIterable.toList()SynchronizedShortIterable.toList()AbstractShortIterable.toSortedList()SynchronizedShortIterable.toSortedList() -
Uses of MutableShortList in org.eclipse.collections.impl.set.immutable.primitive
Methods in org.eclipse.collections.impl.set.immutable.primitive that return MutableShortListModifier and TypeMethodDescriptionImmutableShortEmptySet.toList()ImmutableShortSingletonSet.toList()ImmutableShortEmptySet.toSortedList()ImmutableShortSingletonSet.toSortedList() -
Uses of MutableShortList in org.eclipse.collections.impl.set.sorted.mutable
Methods in org.eclipse.collections.impl.set.sorted.mutable that return MutableShortListModifier and TypeMethodDescriptionSortedSetAdapter.collectShort(ShortFunction<? super T> shortFunction) SynchronizedSortedSet.collectShort(ShortFunction<? super T> shortFunction) TreeSortedSet.collectShort(ShortFunction<? super T> shortFunction) UnmodifiableSortedSet.collectShort(ShortFunction<? super T> shortFunction) -
Uses of MutableShortList in org.eclipse.collections.impl.stack.immutable.primitive
Methods in org.eclipse.collections.impl.stack.immutable.primitive that return MutableShortListModifier and TypeMethodDescriptionImmutableShortEmptyStack.toList()ImmutableShortSingletonStack.toList()ImmutableShortArrayStack.toSortedList()ImmutableShortEmptyStack.toSortedList()ImmutableShortSingletonStack.toSortedList() -
Uses of MutableShortList in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive that return MutableShortListModifier and TypeMethodDescriptionSynchronizedShortStack.toList()UnmodifiableShortStack.toList()ShortArrayStack.toSortedList()SynchronizedShortStack.toSortedList()UnmodifiableShortStack.toSortedList() -
Uses of MutableShortList in org.eclipse.collections.impl.stack.primitive
Methods in org.eclipse.collections.impl.stack.primitive that return MutableShortList -
Uses of MutableShortList in org.eclipse.collections.impl.utility
Methods in org.eclipse.collections.impl.utility that return MutableShortListModifier and TypeMethodDescriptionstatic <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 MutableShortListModifier and TypeMethodDescriptionstatic <T> MutableShortListRandomAccessListIterate.collectShort(List<T> list, ShortFunction<? super T> shortFunction)