Uses of Interface
org.eclipse.collections.api.collection.primitive.MutableShortCollection
-
Packages that use MutableShortCollection Package Description org.eclipse.collections.api This package contains interfaces for Eclipse Collections API.org.eclipse.collections.api.bag.primitive This package contains API for Primitive Bags with Mutable and Immutable variants.org.eclipse.collections.api.collection org.eclipse.collections.api.collection.primitive This package contains mutable and immutable primitive collection API.org.eclipse.collections.api.list.primitive This package contains mutable and immutable primitive list API.org.eclipse.collections.api.map.primitive This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.org.eclipse.collections.api.ordered.primitive org.eclipse.collections.api.set.primitive This package contains API for mutable and immutable primitive sets.org.eclipse.collections.impl This package contains implementations for Eclipse Collections API.org.eclipse.collections.impl.bag org.eclipse.collections.impl.bag.mutable.primitive This package contains implementations of the mutable primitive bag interfaces.org.eclipse.collections.impl.bimap org.eclipse.collections.impl.bimap.mutable This package contains implementations of theMutableBiMap
interface.org.eclipse.collections.impl.block.procedure.primitive This package contains implementations of primitive procedures.org.eclipse.collections.impl.collection org.eclipse.collections.impl.collection.mutable This package contains implementations of theMutableCollection
interface.org.eclipse.collections.impl.collection.mutable.primitive This package contains implementations of the mutable primitive collection interfaces.org.eclipse.collections.impl.collector org.eclipse.collections.impl.lazy.primitive This package contains implementations of the lazy primitive iterator interfaces.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 This package contains implementations of theMutableList
interface.org.eclipse.collections.impl.list.mutable.primitive This package contains implementations of the mutable primitive list interfaces.org.eclipse.collections.impl.map.immutable.primitive This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.mutable This package contains implementations of theMutableMap
interface.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 theMutableSortedMap
interface.org.eclipse.collections.impl.set.mutable.primitive This package contains implementations of the mutable primitive set interfaces.org.eclipse.collections.impl.stack.immutable This package contains implementations of theImmutableStack
interface.org.eclipse.collections.impl.stack.mutable This package contains implementations of theMutableStack
interface.org.eclipse.collections.impl.stack.mutable.primitive This package contains implementations of the mutable primitive stack interfaces.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.org.eclipse.collections.impl.utility.internal.primitive -
-
Uses of MutableShortCollection in org.eclipse.collections.api
Methods in org.eclipse.collections.api with type parameters of type MutableShortCollection Modifier and Type Method Description default <R extends MutableShortCollection>
RBooleanIterable. collectShort(BooleanToShortFunction function, R target)
Returns the targetMutableShortCollection
with the results of applying the specified function on each element of the source collection.default <R extends MutableShortCollection>
RByteIterable. collectShort(ByteToShortFunction function, R target)
Returns the targetMutableShortCollection
with the results of applying the specified function on each element of the source collection.default <R extends MutableShortCollection>
RCharIterable. collectShort(CharToShortFunction function, R target)
Returns the targetMutableShortCollection
with the results of applying the specified function on each element of the source collection.default <R extends MutableShortCollection>
RDoubleIterable. collectShort(DoubleToShortFunction function, R target)
Returns the targetMutableShortCollection
with the results of applying the specified function on each element of the source collection.default <R extends MutableShortCollection>
RFloatIterable. collectShort(FloatToShortFunction function, R target)
Returns the targetMutableShortCollection
with the results of applying the specified function on each element of the source collection.default <R extends MutableShortCollection>
RIntIterable. collectShort(IntToShortFunction function, R target)
Returns the targetMutableShortCollection
with the results of applying the specified function on each element of the source collection.default <R extends MutableShortCollection>
RLongIterable. collectShort(LongToShortFunction function, R target)
Returns the targetMutableShortCollection
with the results of applying the specified function on each element of the source collection.default <R extends MutableShortCollection>
RRichIterable. collectShort(ShortFunction<? super T> shortFunction, R target)
Same asRichIterable.collectShort(ShortFunction)
, except that the results are gathered into the specifiedtarget
collection.default <R extends MutableShortCollection>
RShortIterable. collectShort(ShortToShortFunction function, R target)
Returns the targetMutableShortCollection
with the results of applying the specified function on each element of the source collection.default <R extends MutableShortCollection>
RRichIterable. flatCollectShort(Function<? super T,? extends ShortIterable> function, R target)
Same as flatCollect, only the results are collected into the target collection.default <R extends MutableShortCollection>
RShortIterable. reject(ShortPredicate predicate, R target)
Same asShortIterable.reject(ShortPredicate)
, only the results are added to the target MutableShortCollection.default <R extends MutableShortCollection>
RShortIterable. select(ShortPredicate predicate, R target)
Same asShortIterable.select(ShortPredicate)
, only the results are added to the target MutableShortCollection. -
Uses of MutableShortCollection in org.eclipse.collections.api.bag.primitive
Subinterfaces of MutableShortCollection in org.eclipse.collections.api.bag.primitive Modifier and Type Interface Description interface
MutableShortBag
This file was automatically generated from template file mutablePrimitiveBag.stg. -
Uses of MutableShortCollection in org.eclipse.collections.api.collection
Methods in org.eclipse.collections.api.collection that return MutableShortCollection Modifier and Type Method Description default MutableShortCollection
MutableCollection. collectShort(ShortFunction<? super T> shortFunction)
Returns a new primitiveshort
iterable with the results of applying the specified function on each element of the source collection. -
Uses of MutableShortCollection in org.eclipse.collections.api.collection.primitive
Methods in org.eclipse.collections.api.collection.primitive that return MutableShortCollection Modifier and Type Method Description MutableShortCollection
MutableShortCollection. asSynchronized()
MutableShortCollection
MutableShortCollection. asUnmodifiable()
default MutableShortCollection
MutableShortCollection. newEmpty()
Creates a new empty mutable version of the same collection type.MutableShortCollection
MutableShortCollection. reject(ShortPredicate predicate)
MutableShortCollection
MutableShortCollection. select(ShortPredicate predicate)
default MutableShortCollection
MutableShortCollection. tap(ShortProcedure procedure)
MutableShortCollection
MutableShortCollection. with(short element)
MutableShortCollection
MutableShortCollection. withAll(ShortIterable elements)
MutableShortCollection
MutableShortCollection. without(short element)
MutableShortCollection
MutableShortCollection. withoutAll(ShortIterable elements)
-
Uses of MutableShortCollection in org.eclipse.collections.api.list.primitive
Subinterfaces of MutableShortCollection in org.eclipse.collections.api.list.primitive Modifier and Type Interface Description interface
MutableShortList
This file was automatically generated from template file mutablePrimitiveList.stg. -
Uses of MutableShortCollection in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableShortCollection Modifier and Type Method Description MutableShortCollection
MutableObjectShortMap. reject(ShortPredicate predicate)
MutableShortCollection
MutableObjectShortMap. select(ShortPredicate predicate)
MutableShortCollection
ObjectShortMap. values()
Returns the values in this map as a separate collection.MutableShortCollection
ShortValuesMap. values()
Returns the values in this map as a separate collection. -
Uses of MutableShortCollection in org.eclipse.collections.api.ordered.primitive
Methods in org.eclipse.collections.api.ordered.primitive with type parameters of type MutableShortCollection Modifier and Type Method Description default <R extends MutableShortCollection>
ROrderedShortIterable. rejectWithIndex(ShortIntPredicate predicate, R target)
Returns a new MutableShortCollection excluding all elements with corresponding indexes matching the specified predicate.default <R extends MutableShortCollection>
ROrderedShortIterable. selectWithIndex(ShortIntPredicate predicate, R target)
Returns a new MutableShortCollection including all elements with corresponding indexes matching the specified predicate. -
Uses of MutableShortCollection in org.eclipse.collections.api.set.primitive
Subinterfaces of MutableShortCollection in org.eclipse.collections.api.set.primitive Modifier and Type Interface Description interface
MutableShortSet
This file was automatically generated from template file mutablePrimitiveSet.stg. -
Uses of MutableShortCollection in org.eclipse.collections.impl
Methods in org.eclipse.collections.impl with type parameters of type MutableShortCollection Modifier and Type Method Description <R extends MutableShortCollection>
RUnmodifiableRichIterable. collectShort(ShortFunction<? super T> shortFunction, R target)
<R extends MutableShortCollection>
RUnmodifiableRichIterable. flatCollectShort(Function<? super T,? extends ShortIterable> function, R target)
-
Uses of MutableShortCollection in org.eclipse.collections.impl.bag
Methods in org.eclipse.collections.impl.bag with type parameters of type MutableShortCollection Modifier and Type Method Description <R extends MutableShortCollection>
RAbstractBag. collectShort(ShortFunction<? super T> shortFunction, R target)
<R extends MutableShortCollection>
RAbstractBag. flatCollectShort(Function<? super T,? extends ShortIterable> function, R target)
-
Uses of MutableShortCollection in org.eclipse.collections.impl.bag.mutable.primitive
Classes in org.eclipse.collections.impl.bag.mutable.primitive that implement MutableShortCollection Modifier and Type Class Description class
ShortHashBag
ShortHashBag is similar toHashBag
, and is memory-optimized for short primitives.class
SynchronizedShortBag
A synchronized view of aMutableShortBag
.class
UnmodifiableShortBag
This file was automatically generated from template file unmodifiablePrimitiveBag.stg. -
Uses of MutableShortCollection in org.eclipse.collections.impl.bimap
Methods in org.eclipse.collections.impl.bimap with type parameters of type MutableShortCollection Modifier and Type Method Description <R extends MutableShortCollection>
RAbstractBiMap. collectShort(ShortFunction<? super V> shortFunction, R target)
<R extends MutableShortCollection>
RAbstractBiMap. flatCollectShort(Function<? super V,? extends ShortIterable> function, R target)
-
Uses of MutableShortCollection in org.eclipse.collections.impl.bimap.mutable
Methods in org.eclipse.collections.impl.bimap.mutable with type parameters of type MutableShortCollection Modifier and Type Method Description <R extends MutableShortCollection>
RUnmodifiableBiMap. collectShort(ShortFunction<? super V> shortFunction, R target)
<R extends MutableShortCollection>
RUnmodifiableBiMap. flatCollectShort(Function<? super V,? extends ShortIterable> function, R target)
-
Uses of MutableShortCollection in org.eclipse.collections.impl.block.procedure.primitive
Fields in org.eclipse.collections.impl.block.procedure.primitive declared as MutableShortCollection Modifier and Type Field Description private MutableShortCollection
CollectShortProcedure. shortCollection
Methods in org.eclipse.collections.impl.block.procedure.primitive that return MutableShortCollection Modifier and Type Method Description MutableShortCollection
CollectShortProcedure. getShortCollection()
Constructors in org.eclipse.collections.impl.block.procedure.primitive with parameters of type MutableShortCollection Constructor Description CollectShortProcedure(ShortFunction<? super T> shortFunction, MutableShortCollection targetCollection)
-
Uses of MutableShortCollection in org.eclipse.collections.impl.collection
Methods in org.eclipse.collections.impl.collection with type parameters of type MutableShortCollection Modifier and Type Method Description <R extends MutableShortCollection>
RAbstractSynchronizedRichIterable. collectShort(ShortFunction<? super T> shortFunction, R target)
<R extends MutableShortCollection>
RAbstractSynchronizedRichIterable. flatCollectShort(Function<? super T,? extends ShortIterable> function, R target)
-
Uses of MutableShortCollection in org.eclipse.collections.impl.collection.mutable
Methods in org.eclipse.collections.impl.collection.mutable with type parameters of type MutableShortCollection Modifier and Type Method Description <R extends MutableShortCollection>
RAbstractCollectionAdapter. collectShort(ShortFunction<? super T> shortFunction, R target)
<R extends MutableShortCollection>
RAbstractMultiReaderMutableCollection. collectShort(ShortFunction<? super T> shortFunction, R target)
<R extends MutableShortCollection>
RAbstractMultiReaderMutableCollection.UntouchableMutableCollection. collectShort(ShortFunction<? super T> shortFunction, R target)
<R extends MutableShortCollection>
RAbstractUnmodifiableMutableCollection. collectShort(ShortFunction<? super T> shortFunction, R target)
<R extends MutableShortCollection>
RAbstractMultiReaderMutableCollection. flatCollectShort(Function<? super T,? extends ShortIterable> function, R target)
<R extends MutableShortCollection>
RAbstractMultiReaderMutableCollection.UntouchableMutableCollection. flatCollectShort(Function<? super T,? extends ShortIterable> function, R target)
<R extends MutableShortCollection>
RAbstractUnmodifiableMutableCollection. flatCollectShort(Function<? super T,? extends ShortIterable> function, R target)
Methods in org.eclipse.collections.impl.collection.mutable that return MutableShortCollection Modifier and Type Method Description MutableShortCollection
AbstractSynchronizedMutableCollection. collectShort(ShortFunction<? super T> shortFunction)
MutableShortCollection
AbstractUnmodifiableMutableCollection. collectShort(ShortFunction<? super T> shortFunction)
-
Uses of MutableShortCollection in org.eclipse.collections.impl.collection.mutable.primitive
Classes in org.eclipse.collections.impl.collection.mutable.primitive that implement MutableShortCollection Modifier and Type Class Description class
AbstractSynchronizedShortCollection
This file was automatically generated from template file abstractSynchronizedPrimitiveCollection.stg.class
AbstractUnmodifiableShortCollection
This file was automatically generated from template file abstractUnmodifiablePrimitiveCollection.stg.class
SynchronizedShortCollection
This file was automatically generated from template file synchronizedPrimitiveCollection.stg.class
UnmodifiableShortCollection
This file was automatically generated from template file unmodifiablePrimitiveCollection.stg.Fields in org.eclipse.collections.impl.collection.mutable.primitive declared as MutableShortCollection Modifier and Type Field Description private MutableShortCollection
AbstractSynchronizedShortCollection. collection
private MutableShortCollection
AbstractUnmodifiableShortCollection. collection
Methods in org.eclipse.collections.impl.collection.mutable.primitive that return MutableShortCollection Modifier and Type Method Description MutableShortCollection
AbstractSynchronizedShortCollection. asSynchronized()
MutableShortCollection
AbstractUnmodifiableShortCollection. asSynchronized()
MutableShortCollection
AbstractSynchronizedShortCollection. asUnmodifiable()
MutableShortCollection
AbstractUnmodifiableShortCollection. asUnmodifiable()
protected MutableShortCollection
AbstractSynchronizedShortCollection. getShortCollection()
protected MutableShortCollection
AbstractUnmodifiableShortCollection. getShortCollection()
MutableShortCollection
SynchronizedShortCollection. newEmpty()
MutableShortCollection
UnmodifiableShortCollection. newEmpty()
MutableShortCollection
AbstractSynchronizedShortCollection. reject(ShortPredicate predicate)
MutableShortCollection
AbstractUnmodifiableShortCollection. reject(ShortPredicate predicate)
MutableShortCollection
AbstractSynchronizedShortCollection. select(ShortPredicate predicate)
MutableShortCollection
AbstractUnmodifiableShortCollection. select(ShortPredicate predicate)
MutableShortCollection
AbstractSynchronizedShortCollection. with(short element)
MutableShortCollection
AbstractUnmodifiableShortCollection. with(short element)
MutableShortCollection
AbstractSynchronizedShortCollection. withAll(ShortIterable elements)
MutableShortCollection
AbstractUnmodifiableShortCollection. withAll(ShortIterable elements)
MutableShortCollection
AbstractSynchronizedShortCollection. without(short element)
MutableShortCollection
AbstractUnmodifiableShortCollection. without(short element)
MutableShortCollection
AbstractSynchronizedShortCollection. withoutAll(ShortIterable elements)
MutableShortCollection
AbstractUnmodifiableShortCollection. withoutAll(ShortIterable elements)
Methods in org.eclipse.collections.impl.collection.mutable.primitive with parameters of type MutableShortCollection Modifier and Type Method Description static SynchronizedShortCollection
SynchronizedShortCollection. of(MutableShortCollection collection)
This method will take a MutableShortCollection and wrap it directly in a SynchronizedShortCollection.static SynchronizedShortCollection
SynchronizedShortCollection. of(MutableShortCollection collection, java.lang.Object lock)
This method will take a MutableShortCollection and wrap it directly in a SynchronizedShortCollection.static UnmodifiableShortCollection
UnmodifiableShortCollection. of(MutableShortCollection collection)
This method will take a MutableShortCollection and wrap it directly in a UnmodifiableShortCollection.Constructors in org.eclipse.collections.impl.collection.mutable.primitive with parameters of type MutableShortCollection Constructor Description AbstractSynchronizedShortCollection(MutableShortCollection collection)
AbstractSynchronizedShortCollection(MutableShortCollection collection, java.lang.Object newLock)
AbstractUnmodifiableShortCollection(MutableShortCollection collection)
SynchronizedShortCollection(MutableShortCollection collection)
SynchronizedShortCollection(MutableShortCollection collection, java.lang.Object newLock)
UnmodifiableShortCollection(MutableShortCollection collection)
-
Uses of MutableShortCollection in org.eclipse.collections.impl.collector
Methods in org.eclipse.collections.impl.collector with type parameters of type MutableShortCollection Modifier and Type Method Description static <T,R extends MutableShortCollection>
java.util.stream.Collector<T,?,R>Collectors2. collectShort(ShortFunction<? super T> function, java.util.function.Supplier<R> supplier)
Returns a new MutableShortCollection with the results of applying the specified ShortFunction on each element of the source. -
Uses of MutableShortCollection in org.eclipse.collections.impl.lazy.primitive
Fields in org.eclipse.collections.impl.lazy.primitive with type parameters of type MutableShortCollection Modifier and Type Field Description private Function0<MutableShortCollection>
ChunkShortIterable.ChunkShortIterator. speciesNewStrategy
-
Uses of MutableShortCollection in org.eclipse.collections.impl.list.immutable.primitive
Methods in org.eclipse.collections.impl.list.immutable.primitive with type parameters of type MutableShortCollection Modifier and Type Method Description <R extends MutableShortCollection>
RImmutableShortArrayList. reject(ShortPredicate predicate, R target)
<R extends MutableShortCollection>
RImmutableShortArrayList. select(ShortPredicate predicate, R target)
-
Uses of MutableShortCollection in org.eclipse.collections.impl.list.mutable
Methods in org.eclipse.collections.impl.list.mutable with type parameters of type MutableShortCollection Modifier and Type Method Description <R extends MutableShortCollection>
RFastList. collectShort(ShortFunction<? super T> shortFunction, R target)
<R extends MutableShortCollection>
RFastList. flatCollectShort(Function<? super T,? extends ShortIterable> function, R target)
-
Uses of MutableShortCollection in org.eclipse.collections.impl.list.mutable.primitive
Classes in org.eclipse.collections.impl.list.mutable.primitive that implement MutableShortCollection Modifier and Type Class Description class
ShortArrayList
ShortArrayList is similar to FastList, and is memory-optimized for short primitives.class
SynchronizedShortList
A synchronized view of aMutableShortList
.class
UnmodifiableShortList
This file was automatically generated from template file unmodifiablePrimitiveList.stg.Methods in org.eclipse.collections.impl.list.mutable.primitive with type parameters of type MutableShortCollection Modifier and Type Method Description <R extends MutableShortCollection>
RShortArrayList. reject(ShortPredicate predicate, R target)
<R extends MutableShortCollection>
RSynchronizedShortList. rejectWithIndex(ShortIntPredicate predicate, R target)
Returns a new MutableShortCollection excluding all elements with corresponding indexes matching the specified predicate.<R extends MutableShortCollection>
RUnmodifiableShortList. rejectWithIndex(ShortIntPredicate predicate, R target)
Returns a new MutableShortCollection excluding all elements with corresponding indexes matching the specified predicate.<R extends MutableShortCollection>
RShortArrayList. select(ShortPredicate predicate, R target)
<R extends MutableShortCollection>
RSynchronizedShortList. selectWithIndex(ShortIntPredicate predicate, R target)
Returns a new MutableShortCollection including all elements with corresponding indexes matching the specified predicate.<R extends MutableShortCollection>
RUnmodifiableShortList. selectWithIndex(ShortIntPredicate predicate, R target)
Returns a new MutableShortCollection including all elements with corresponding indexes matching the specified predicate. -
Uses of MutableShortCollection in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive with type parameters of type MutableShortCollection Modifier and Type Method Description <R extends MutableShortCollection>
RImmutableByteObjectEmptyMap. collectShort(ShortFunction<? super V> shortFunction, R target)
<R extends MutableShortCollection>
RImmutableByteObjectHashMap. collectShort(ShortFunction<? super V> shortFunction, R target)
<R extends MutableShortCollection>
RImmutableByteObjectSingletonMap. collectShort(ShortFunction<? super V> shortFunction, R target)
<R extends MutableShortCollection>
RImmutableCharObjectEmptyMap. collectShort(ShortFunction<? super V> shortFunction, R target)
<R extends MutableShortCollection>
RImmutableCharObjectHashMap. collectShort(ShortFunction<? super V> shortFunction, R target)
<R extends MutableShortCollection>
RImmutableCharObjectSingletonMap. collectShort(ShortFunction<? super V> shortFunction, R target)
<R extends MutableShortCollection>
RImmutableDoubleObjectEmptyMap. collectShort(ShortFunction<? super V> shortFunction, R target)
<R extends MutableShortCollection>
RImmutableDoubleObjectHashMap. collectShort(ShortFunction<? super V> shortFunction, R target)
<R extends MutableShortCollection>
RImmutableDoubleObjectSingletonMap. collectShort(ShortFunction<? super V> shortFunction, R target)
<R extends MutableShortCollection>
RImmutableFloatObjectEmptyMap. collectShort(ShortFunction<? super V> shortFunction, R target)
<R extends MutableShortCollection>
RImmutableFloatObjectHashMap. collectShort(ShortFunction<? super V> shortFunction, R target)
<R extends MutableShortCollection>
RImmutableFloatObjectSingletonMap. collectShort(ShortFunction<? super V> shortFunction, R target)
<R extends MutableShortCollection>
RImmutableIntObjectEmptyMap. collectShort(ShortFunction<? super V> shortFunction, R target)
<R extends MutableShortCollection>
RImmutableIntObjectHashMap. collectShort(ShortFunction<? super V> shortFunction, R target)
<R extends MutableShortCollection>
RImmutableIntObjectSingletonMap. collectShort(ShortFunction<? super V> shortFunction, R target)
<R extends MutableShortCollection>
RImmutableLongObjectEmptyMap. collectShort(ShortFunction<? super V> shortFunction, R target)
<R extends MutableShortCollection>
RImmutableLongObjectHashMap. collectShort(ShortFunction<? super V> shortFunction, R target)
<R extends MutableShortCollection>
RImmutableLongObjectSingletonMap. collectShort(ShortFunction<? super V> shortFunction, R target)
<R extends MutableShortCollection>
RImmutableShortObjectEmptyMap. collectShort(ShortFunction<? super V> shortFunction, R target)
<R extends MutableShortCollection>
RImmutableShortObjectHashMap. collectShort(ShortFunction<? super V> shortFunction, R target)
<R extends MutableShortCollection>
RImmutableShortObjectSingletonMap. collectShort(ShortFunction<? super V> shortFunction, R target)
<R extends MutableShortCollection>
RImmutableByteObjectEmptyMap. flatCollectShort(Function<? super V,? extends ShortIterable> function, R target)
<R extends MutableShortCollection>
RImmutableCharObjectEmptyMap. flatCollectShort(Function<? super V,? extends ShortIterable> function, R target)
<R extends MutableShortCollection>
RImmutableDoubleObjectEmptyMap. flatCollectShort(Function<? super V,? extends ShortIterable> function, R target)
<R extends MutableShortCollection>
RImmutableFloatObjectEmptyMap. flatCollectShort(Function<? super V,? extends ShortIterable> function, R target)
<R extends MutableShortCollection>
RImmutableIntObjectEmptyMap. flatCollectShort(Function<? super V,? extends ShortIterable> function, R target)
<R extends MutableShortCollection>
RImmutableLongObjectEmptyMap. flatCollectShort(Function<? super V,? extends ShortIterable> function, R target)
<R extends MutableShortCollection>
RImmutableShortObjectEmptyMap. flatCollectShort(Function<? super V,? extends ShortIterable> function, R target)
Methods in org.eclipse.collections.impl.map.immutable.primitive that return MutableShortCollection Modifier and Type Method Description MutableShortCollection
ImmutableByteShortEmptyMap. values()
MutableShortCollection
ImmutableByteShortHashMap. values()
MutableShortCollection
ImmutableByteShortSingletonMap. values()
MutableShortCollection
ImmutableCharShortEmptyMap. values()
MutableShortCollection
ImmutableCharShortHashMap. values()
MutableShortCollection
ImmutableCharShortSingletonMap. values()
MutableShortCollection
ImmutableDoubleShortEmptyMap. values()
MutableShortCollection
ImmutableDoubleShortHashMap. values()
MutableShortCollection
ImmutableDoubleShortSingletonMap. values()
MutableShortCollection
ImmutableFloatShortEmptyMap. values()
MutableShortCollection
ImmutableFloatShortHashMap. values()
MutableShortCollection
ImmutableFloatShortSingletonMap. values()
MutableShortCollection
ImmutableIntShortEmptyMap. values()
MutableShortCollection
ImmutableIntShortHashMap. values()
MutableShortCollection
ImmutableIntShortSingletonMap. values()
MutableShortCollection
ImmutableLongShortEmptyMap. values()
MutableShortCollection
ImmutableLongShortHashMap. values()
MutableShortCollection
ImmutableLongShortSingletonMap. values()
MutableShortCollection
ImmutableObjectShortEmptyMap. values()
MutableShortCollection
ImmutableObjectShortHashMap. values()
MutableShortCollection
ImmutableObjectShortSingletonMap. values()
MutableShortCollection
ImmutableShortShortEmptyMap. values()
MutableShortCollection
ImmutableShortShortHashMap. values()
MutableShortCollection
ImmutableShortShortSingletonMap. values()
-
Uses of MutableShortCollection in org.eclipse.collections.impl.map.mutable
Methods in org.eclipse.collections.impl.map.mutable with type parameters of type MutableShortCollection Modifier and Type Method Description <R extends MutableShortCollection>
RUnmodifiableMutableMap. collectShort(ShortFunction<? super V> shortFunction, R target)
<R extends MutableShortCollection>
RUnmodifiableMutableMap. flatCollectShort(Function<? super V,? extends ShortIterable> function, R target)
-
Uses of MutableShortCollection in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive with type parameters of type MutableShortCollection Modifier and Type Method Description <R extends MutableShortCollection>
RSynchronizedByteObjectMap. collectShort(ShortFunction<? super V> shortFunction, R target)
<R extends MutableShortCollection>
RSynchronizedCharObjectMap. collectShort(ShortFunction<? super V> shortFunction, R target)
<R extends MutableShortCollection>
RSynchronizedDoubleObjectMap. collectShort(ShortFunction<? super V> shortFunction, R target)
<R extends MutableShortCollection>
RSynchronizedFloatObjectMap. collectShort(ShortFunction<? super V> shortFunction, R target)
<R extends MutableShortCollection>
RSynchronizedIntObjectMap. collectShort(ShortFunction<? super V> shortFunction, R target)
<R extends MutableShortCollection>
RSynchronizedLongObjectMap. collectShort(ShortFunction<? super V> shortFunction, R target)
<R extends MutableShortCollection>
RSynchronizedShortObjectMap. collectShort(ShortFunction<? super V> shortFunction, R target)
<R extends MutableShortCollection>
RUnmodifiableByteObjectMap. collectShort(ShortFunction<? super V> shortFunction, R target)
<R extends MutableShortCollection>
RUnmodifiableCharObjectMap. collectShort(ShortFunction<? super V> shortFunction, R target)
<R extends MutableShortCollection>
RUnmodifiableDoubleObjectMap. collectShort(ShortFunction<? super V> shortFunction, R target)
<R extends MutableShortCollection>
RUnmodifiableFloatObjectMap. collectShort(ShortFunction<? super V> shortFunction, R target)
<R extends MutableShortCollection>
RUnmodifiableIntObjectMap. collectShort(ShortFunction<? super V> shortFunction, R target)
<R extends MutableShortCollection>
RUnmodifiableLongObjectMap. collectShort(ShortFunction<? super V> shortFunction, R target)
<R extends MutableShortCollection>
RUnmodifiableShortObjectMap. collectShort(ShortFunction<? super V> shortFunction, R target)
<R extends MutableShortCollection>
RSynchronizedByteObjectMap. flatCollectShort(Function<? super V,? extends ShortIterable> function, R target)
<R extends MutableShortCollection>
RSynchronizedCharObjectMap. flatCollectShort(Function<? super V,? extends ShortIterable> function, R target)
<R extends MutableShortCollection>
RSynchronizedDoubleObjectMap. flatCollectShort(Function<? super V,? extends ShortIterable> function, R target)
<R extends MutableShortCollection>
RSynchronizedFloatObjectMap. flatCollectShort(Function<? super V,? extends ShortIterable> function, R target)
<R extends MutableShortCollection>
RSynchronizedIntObjectMap. flatCollectShort(Function<? super V,? extends ShortIterable> function, R target)
<R extends MutableShortCollection>
RSynchronizedLongObjectMap. flatCollectShort(Function<? super V,? extends ShortIterable> function, R target)
<R extends MutableShortCollection>
RSynchronizedShortObjectMap. flatCollectShort(Function<? super V,? extends ShortIterable> function, R target)
Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableShortCollection Modifier and Type Method Description MutableShortCollection
AbstractMutableShortValuesMap.AbstractShortValuesCollection. asSynchronized()
MutableShortCollection
ObjectShortHashMap.ValuesCollection. asSynchronized()
MutableShortCollection
ObjectShortHashMapWithHashingStrategy.ValuesCollection. asSynchronized()
MutableShortCollection
AbstractMutableShortValuesMap.AbstractShortValuesCollection. asUnmodifiable()
MutableShortCollection
ObjectShortHashMap.ValuesCollection. asUnmodifiable()
MutableShortCollection
ObjectShortHashMapWithHashingStrategy.ValuesCollection. asUnmodifiable()
MutableShortCollection
ByteShortHashMap.ValuesCollection. newEmpty()
MutableShortCollection
CharShortHashMap.ValuesCollection. newEmpty()
MutableShortCollection
DoubleShortHashMap.ValuesCollection. newEmpty()
MutableShortCollection
FloatShortHashMap.ValuesCollection. newEmpty()
MutableShortCollection
IntShortHashMap.ValuesCollection. newEmpty()
MutableShortCollection
LongShortHashMap.ValuesCollection. newEmpty()
MutableShortCollection
ObjectShortHashMap.ValuesCollection. newEmpty()
MutableShortCollection
ObjectShortHashMapWithHashingStrategy.ValuesCollection. newEmpty()
MutableShortCollection
ShortShortHashMap.ValuesCollection. newEmpty()
MutableShortCollection
AbstractMutableShortValuesMap.AbstractShortValuesCollection. reject(ShortPredicate predicate)
MutableShortCollection
ObjectShortHashMap. reject(ShortPredicate predicate)
MutableShortCollection
ObjectShortHashMap.ValuesCollection. reject(ShortPredicate predicate)
MutableShortCollection
ObjectShortHashMapWithHashingStrategy. reject(ShortPredicate predicate)
MutableShortCollection
ObjectShortHashMapWithHashingStrategy.ValuesCollection. reject(ShortPredicate predicate)
MutableShortCollection
SynchronizedObjectShortMap. reject(ShortPredicate predicate)
MutableShortCollection
UnmodifiableObjectShortMap. reject(ShortPredicate predicate)
MutableShortCollection
AbstractMutableShortValuesMap.AbstractShortValuesCollection. select(ShortPredicate predicate)
MutableShortCollection
ObjectShortHashMap. select(ShortPredicate predicate)
MutableShortCollection
ObjectShortHashMap.ValuesCollection. select(ShortPredicate predicate)
MutableShortCollection
ObjectShortHashMapWithHashingStrategy. select(ShortPredicate predicate)
MutableShortCollection
ObjectShortHashMapWithHashingStrategy.ValuesCollection. select(ShortPredicate predicate)
MutableShortCollection
SynchronizedObjectShortMap. select(ShortPredicate predicate)
MutableShortCollection
UnmodifiableObjectShortMap. select(ShortPredicate predicate)
MutableShortCollection
ByteShortHashMap. values()
MutableShortCollection
CharShortHashMap. values()
MutableShortCollection
DoubleShortHashMap. values()
MutableShortCollection
FloatShortHashMap. values()
MutableShortCollection
IntShortHashMap. values()
MutableShortCollection
LongShortHashMap. values()
MutableShortCollection
ObjectShortHashMap. values()
MutableShortCollection
ObjectShortHashMapWithHashingStrategy. values()
MutableShortCollection
ShortShortHashMap. values()
MutableShortCollection
SynchronizedByteShortMap. values()
MutableShortCollection
SynchronizedCharShortMap. values()
MutableShortCollection
SynchronizedDoubleShortMap. values()
MutableShortCollection
SynchronizedFloatShortMap. values()
MutableShortCollection
SynchronizedIntShortMap. values()
MutableShortCollection
SynchronizedLongShortMap. values()
MutableShortCollection
SynchronizedObjectShortMap. values()
MutableShortCollection
SynchronizedShortShortMap. values()
MutableShortCollection
UnmodifiableByteShortMap. values()
MutableShortCollection
UnmodifiableCharShortMap. values()
MutableShortCollection
UnmodifiableDoubleShortMap. values()
MutableShortCollection
UnmodifiableFloatShortMap. values()
MutableShortCollection
UnmodifiableIntShortMap. values()
MutableShortCollection
UnmodifiableLongShortMap. values()
MutableShortCollection
UnmodifiableObjectShortMap. values()
MutableShortCollection
UnmodifiableShortShortMap. values()
MutableShortCollection
AbstractMutableShortValuesMap.AbstractShortValuesCollection. with(short element)
MutableShortCollection
ObjectShortHashMap.ValuesCollection. with(short element)
MutableShortCollection
ObjectShortHashMapWithHashingStrategy.ValuesCollection. with(short element)
MutableShortCollection
AbstractMutableShortValuesMap.AbstractShortValuesCollection. withAll(ShortIterable elements)
MutableShortCollection
ObjectShortHashMap.ValuesCollection. withAll(ShortIterable elements)
MutableShortCollection
ObjectShortHashMapWithHashingStrategy.ValuesCollection. withAll(ShortIterable elements)
MutableShortCollection
AbstractMutableShortValuesMap.AbstractShortValuesCollection. without(short element)
MutableShortCollection
ObjectShortHashMap.ValuesCollection. without(short element)
MutableShortCollection
ObjectShortHashMapWithHashingStrategy.ValuesCollection. without(short element)
MutableShortCollection
AbstractMutableShortValuesMap.AbstractShortValuesCollection. withoutAll(ShortIterable elements)
MutableShortCollection
ObjectShortHashMap.ValuesCollection. withoutAll(ShortIterable elements)
MutableShortCollection
ObjectShortHashMapWithHashingStrategy.ValuesCollection. withoutAll(ShortIterable elements)
-
Uses of MutableShortCollection in org.eclipse.collections.impl.map.ordered.mutable
Methods in org.eclipse.collections.impl.map.ordered.mutable with type parameters of type MutableShortCollection Modifier and Type Method Description <R extends MutableShortCollection>
RUnmodifiableMutableOrderedMap. collectShort(ShortFunction<? super V> shortFunction, R target)
<R extends MutableShortCollection>
RUnmodifiableMutableOrderedMap. flatCollectShort(Function<? super V,? extends ShortIterable> function, R target)
-
Uses of MutableShortCollection in org.eclipse.collections.impl.map.sorted.mutable
Methods in org.eclipse.collections.impl.map.sorted.mutable with type parameters of type MutableShortCollection Modifier and Type Method Description <R extends MutableShortCollection>
RUnmodifiableTreeMap. collectShort(ShortFunction<? super V> shortFunction, R target)
<R extends MutableShortCollection>
RUnmodifiableTreeMap. flatCollectShort(Function<? super V,? extends ShortIterable> function, R target)
-
Uses of MutableShortCollection in org.eclipse.collections.impl.set.mutable.primitive
Classes in org.eclipse.collections.impl.set.mutable.primitive that implement MutableShortCollection Modifier and Type Class Description class
ShortHashSet
This file was automatically generated from template file primitiveHashSet.stg.class
SynchronizedShortSet
A synchronized view of aMutableShortSet
.class
UnmodifiableShortSet
This file was automatically generated from template file unmodifiablePrimitiveSet.stg.Methods in org.eclipse.collections.impl.set.mutable.primitive with type parameters of type MutableShortCollection Modifier and Type Method Description <R extends MutableShortCollection>
RShortHashSet. reject(ShortPredicate predicate, R target)
<R extends MutableShortCollection>
RShortHashSet. select(ShortPredicate predicate, R target)
-
Uses of MutableShortCollection in org.eclipse.collections.impl.stack.immutable
Methods in org.eclipse.collections.impl.stack.immutable with type parameters of type MutableShortCollection Modifier and Type Method Description <R extends MutableShortCollection>
RImmutableArrayStack. collectShort(ShortFunction<? super T> shortFunction, R target)
Deprecated.<R extends MutableShortCollection>
RImmutableEmptyStack. collectShort(ShortFunction<? super T> shortFunction, R target)
<R extends MutableShortCollection>
RImmutableArrayStack. flatCollectShort(Function<? super T,? extends ShortIterable> function, R target)
Deprecated.<R extends MutableShortCollection>
RImmutableEmptyStack. flatCollectShort(Function<? super T,? extends ShortIterable> function, R target)
-
Uses of MutableShortCollection in org.eclipse.collections.impl.stack.mutable
Methods in org.eclipse.collections.impl.stack.mutable with type parameters of type MutableShortCollection Modifier and Type Method Description <R extends MutableShortCollection>
RArrayStack. collectShort(ShortFunction<? super T> shortFunction, R target)
<R extends MutableShortCollection>
RSynchronizedStack. collectShort(ShortFunction<? super T> shortFunction, R target)
<R extends MutableShortCollection>
RUnmodifiableStack. collectShort(ShortFunction<? super T> shortFunction, R target)
<R extends MutableShortCollection>
RArrayStack. flatCollectShort(Function<? super T,? extends ShortIterable> function, R target)
<R extends MutableShortCollection>
RSynchronizedStack. flatCollectShort(Function<? super T,? extends ShortIterable> function, R target)
<R extends MutableShortCollection>
RUnmodifiableStack. flatCollectShort(Function<? super T,? extends ShortIterable> function, R target)
-
Uses of MutableShortCollection in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive with type parameters of type MutableShortCollection Modifier and Type Method Description <R extends MutableShortCollection>
RSynchronizedShortStack. rejectWithIndex(ShortIntPredicate predicate, R target)
Returns a new MutableShortCollection excluding all elements with corresponding indexes matching the specified predicate.<R extends MutableShortCollection>
RSynchronizedShortStack. selectWithIndex(ShortIntPredicate predicate, R target)
Returns a new MutableShortCollection including all elements with corresponding indexes matching the specified predicate. -
Uses of MutableShortCollection in org.eclipse.collections.impl.utility
Methods in org.eclipse.collections.impl.utility with type parameters of type MutableShortCollection Modifier and Type Method Description static <T,R extends MutableShortCollection>
RArrayIterate. collectShort(T[] objectArray, ShortFunction<? super T> shortFunction, R target)
static <T,R extends MutableShortCollection>
RArrayListIterate. collectShort(java.util.ArrayList<T> list, ShortFunction<? super T> shortFunction, R target)
static <T,R extends MutableShortCollection>
RIterate. collectShort(java.lang.Iterable<T> iterable, ShortFunction<? super T> shortFunction, R target)
Same asIterate.collectShort(Iterable, ShortFunction)
, except that the results are gathered into the specifiedtarget
collection.static <T,R extends MutableShortCollection>
RListIterate. collectShort(java.util.List<T> list, ShortFunction<? super T> shortFunction, R target)
static <K,V,R extends MutableShortCollection>
RMapIterate. collectShort(java.util.Map<K,V> map, ShortFunction<? super V> shortFunction, R target)
private static <T,R extends MutableShortCollection>
RArrayListIterate. collectShortFromInternalArray(java.util.ArrayList<T> source, ShortFunction<? super T> shortFunction, int elementsToCollect, R target)
Methods in org.eclipse.collections.impl.utility that return MutableShortCollection Modifier and Type Method Description static <T> MutableShortCollection
Iterate. collectShort(java.lang.Iterable<T> iterable, ShortFunction<? super T> shortFunction)
Returns a newshort
collection with the results of applying the specified shortFunction for each element of the iterable.static <K,V>
MutableShortCollectionMapIterate. collectShort(java.util.Map<K,V> map, ShortFunction<? super V> shortFunction)
-
Uses of MutableShortCollection in org.eclipse.collections.impl.utility.internal
Methods in org.eclipse.collections.impl.utility.internal with type parameters of type MutableShortCollection Modifier and Type Method Description static <T,R extends MutableShortCollection>
RIterableIterate. collectShort(java.lang.Iterable<T> iterable, ShortFunction<? super T> shortFunction, R target)
static <T,R extends MutableShortCollection>
RIteratorIterate. collectShort(java.util.Iterator<T> iterator, ShortFunction<? super T> shortFunction, R target)
static <T,R extends MutableShortCollection>
RRandomAccessListIterate. collectShort(java.util.List<T> list, ShortFunction<? super T> shortFunction, R target)
Methods in org.eclipse.collections.impl.utility.internal that return MutableShortCollection Modifier and Type Method Description static <T> MutableShortCollection
IterableIterate. collectShort(java.lang.Iterable<T> iterable, ShortFunction<? super T> shortFunction)
static <T> MutableShortCollection
IteratorIterate. collectShort(java.util.Iterator<T> iterator, ShortFunction<? super T> shortFunction)
-
Uses of MutableShortCollection in org.eclipse.collections.impl.utility.internal.primitive
Methods in org.eclipse.collections.impl.utility.internal.primitive with type parameters of type MutableShortCollection Modifier and Type Method Description static <R extends MutableShortCollection>
RShortIterableIterate. reject(ShortIterable iterable, ShortPredicate predicate, R targetCollection)
static <R extends MutableShortCollection>
RShortIteratorIterate. reject(ShortIterator iterator, ShortPredicate predicate, R targetCollection)
static <R extends MutableShortCollection>
RShortIterableIterate. select(ShortIterable iterable, ShortPredicate predicate, R targetCollection)
static <R extends MutableShortCollection>
RShortIteratorIterate. select(ShortIterator iterator, ShortPredicate predicate, R targetCollection)
-