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.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.api.stack.primitive |
This package contains mutable and immutable primitive stack API.
|
org.eclipse.collections.impl.bag.mutable.primitive |
This package contains implementations of the mutable primitive bag interfaces.
|
org.eclipse.collections.impl.block.function.primitive |
This package contains implementations of primitive functions.
|
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.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.primitive | |
org.eclipse.collections.impl.set.mutable.primitive |
This package contains implementations of the mutable primitive set interfaces.
|
org.eclipse.collections.impl.stack.mutable.primitive |
This package contains implementations of the mutable primitive stack interfaces.
|
org.eclipse.collections.impl.utility.internal.primitive | |
org.eclipse.collections.impl.utility.primitive |
Modifier and Type | Method | Description |
---|---|---|
<V> LazyIterable<V> |
LazyShortIterable.collect(ShortToObjectFunction<? extends V> function) |
|
<V> RichIterable<V> |
ShortIterable.collect(ShortToObjectFunction<? extends V> function) |
Returns a new collection with the results of applying the specified function on each element of the source
collection.
|
default <V,R extends Collection<V>> |
ShortIterable.collect(ShortToObjectFunction<? extends V> function,
R target) |
Same as
ShortIterable.collect(ShortToObjectFunction) , only the results are added to the target Collection. |
<V> LazyIterable<V> |
LazyShortIterable.flatCollect(ShortToObjectFunction<? extends Iterable<V>> function) |
|
default <V,R extends Collection<V>> |
ShortIterable.flatCollect(ShortToObjectFunction<? extends Iterable<V>> function,
R target) |
flatCollect is a special case of ShortIterable.collect(ShortToObjectFunction) . |
Modifier and Type | Method | Description |
---|---|---|
<V> ImmutableBag<V> |
ImmutableShortBag.collect(ShortToObjectFunction<? extends V> function) |
|
<V> MutableBag<V> |
MutableShortBag.collect(ShortToObjectFunction<? extends V> function) |
|
<V> Bag<V> |
ShortBag.collect(ShortToObjectFunction<? extends V> function) |
Modifier and Type | Method | Description |
---|---|---|
<V> ImmutableCollection<V> |
ImmutableShortCollection.collect(ShortToObjectFunction<? extends V> function) |
|
<V> MutableCollection<V> |
MutableShortCollection.collect(ShortToObjectFunction<? extends V> function) |
Modifier and Type | Method | Description |
---|---|---|
<V> ImmutableList<V> |
ImmutableShortList.collect(ShortToObjectFunction<? extends V> function) |
|
<V> MutableList<V> |
MutableShortList.collect(ShortToObjectFunction<? extends V> function) |
|
<V> ListIterable<V> |
ShortList.collect(ShortToObjectFunction<? extends V> function) |
Modifier and Type | Method | Description |
---|---|---|
<V> ImmutableBag<V> |
ImmutableByteShortMap.collect(ShortToObjectFunction<? extends V> function) |
|
<V> ImmutableBag<V> |
ImmutableCharShortMap.collect(ShortToObjectFunction<? extends V> function) |
|
<V> ImmutableBag<V> |
ImmutableDoubleShortMap.collect(ShortToObjectFunction<? extends V> function) |
|
<V> ImmutableBag<V> |
ImmutableFloatShortMap.collect(ShortToObjectFunction<? extends V> function) |
|
<V> ImmutableBag<V> |
ImmutableIntShortMap.collect(ShortToObjectFunction<? extends V> function) |
|
<V> ImmutableBag<V> |
ImmutableLongShortMap.collect(ShortToObjectFunction<? extends V> function) |
|
<V> ImmutableCollection<V> |
ImmutableObjectShortMap.collect(ShortToObjectFunction<? extends V> function) |
|
<V> ImmutableBag<V> |
ImmutableShortShortMap.collect(ShortToObjectFunction<? extends V> function) |
|
<V> MutableCollection<V> |
MutableObjectShortMap.collect(ShortToObjectFunction<? extends V> function) |
|
<V> MutableBag<V> |
MutableShortValuesMap.collect(ShortToObjectFunction<? extends V> function) |
|
<V> Bag<V> |
ShortValuesMap.collect(ShortToObjectFunction<? extends V> function) |
|
V |
MutableShortObjectMap.getIfAbsentPutWithKey(short key,
ShortToObjectFunction<? extends V> function) |
Modifier and Type | Method | Description |
---|---|---|
<V> OrderedIterable<V> |
OrderedShortIterable.collect(ShortToObjectFunction<? extends V> function) |
|
<V> ReversibleIterable<V> |
ReversibleShortIterable.collect(ShortToObjectFunction<? extends V> function) |
Modifier and Type | Method | Description |
---|---|---|
<V> ImmutableSet<V> |
ImmutableShortSet.collect(ShortToObjectFunction<? extends V> function) |
|
<V> MutableSet<V> |
MutableShortSet.collect(ShortToObjectFunction<? extends V> function) |
|
<V> SetIterable<V> |
ShortSet.collect(ShortToObjectFunction<? extends V> function) |
Modifier and Type | Method | Description |
---|---|---|
<V> ImmutableStack<V> |
ImmutableShortStack.collect(ShortToObjectFunction<? extends V> function) |
|
<V> MutableStack<V> |
MutableShortStack.collect(ShortToObjectFunction<? extends V> function) |
|
<V> StackIterable<V> |
ShortStack.collect(ShortToObjectFunction<? extends V> function) |
Modifier and Type | Method | Description |
---|---|---|
<V> MutableBag<V> |
ShortHashBag.collect(ShortToObjectFunction<? extends V> function) |
|
<V> MutableBag<V> |
SynchronizedShortBag.collect(ShortToObjectFunction<? extends V> function) |
|
<V> MutableBag<V> |
UnmodifiableShortBag.collect(ShortToObjectFunction<? extends V> function) |
Modifier and Type | Class | Description |
---|---|---|
class |
ShortCaseFunction<V> |
This file was automatically generated from template file primitiveCaseFunction.stg.
|
Modifier and Type | Method | Description |
---|---|---|
ShortCaseFunction<V> |
ShortCaseFunction.addCase(ShortPredicate predicate,
ShortToObjectFunction<? extends V> function) |
|
ShortCaseFunction<V> |
ShortCaseFunction.setDefault(ShortToObjectFunction<? extends V> function) |
Constructor | Description |
---|---|
ShortCaseFunction(ShortToObjectFunction<? extends V> newDefaultFunction) |
Modifier and Type | Method | Description |
---|---|---|
<V> MutableCollection<V> |
AbstractSynchronizedShortCollection.collect(ShortToObjectFunction<? extends V> function) |
|
<V> MutableCollection<V> |
AbstractUnmodifiableShortCollection.collect(ShortToObjectFunction<? extends V> function) |
Modifier and Type | Method | Description |
---|---|---|
<V> LazyIterable<V> |
AbstractLazyShortIterable.collect(ShortToObjectFunction<? extends V> function) |
|
<V> LazyIterable<V> |
AbstractLazyShortIterable.flatCollect(ShortToObjectFunction<? extends Iterable<V>> function) |
Constructor | Description |
---|---|
CollectShortToObjectIterable(ShortIterable iterable,
ShortToObjectFunction<? extends V> function) |
|
FlatCollectShortToObjectIterable(ShortIterable iterable,
ShortToObjectFunction<? extends Iterable<V>> function) |
Modifier and Type | Method | Description |
---|---|---|
<V> MutableList<V> |
ShortArrayList.collect(ShortToObjectFunction<? extends V> function) |
|
<V,R extends Collection<V>> |
ShortArrayList.collect(ShortToObjectFunction<? extends V> function,
R target) |
|
<V> MutableList<V> |
SynchronizedShortList.collect(ShortToObjectFunction<? extends V> function) |
|
<V> MutableList<V> |
UnmodifiableShortList.collect(ShortToObjectFunction<? extends V> function) |
Modifier and Type | Method | Description |
---|---|---|
<V> MutableSet<V> |
AbstractMutableShortKeySet.collect(ShortToObjectFunction<? extends V> function) |
|
<V> MutableBag<V> |
AbstractMutableShortValuesMap.collect(ShortToObjectFunction<? extends V> function) |
|
<V> MutableCollection<V> |
ObjectShortHashMap.collect(ShortToObjectFunction<? extends V> function) |
|
<V> MutableCollection<V> |
ObjectShortHashMapWithHashingStrategy.collect(ShortToObjectFunction<? extends V> function) |
|
<V> MutableBag<V> |
SynchronizedByteShortMap.collect(ShortToObjectFunction<? extends V> function) |
|
<V> MutableBag<V> |
SynchronizedCharShortMap.collect(ShortToObjectFunction<? extends V> function) |
|
<V> MutableBag<V> |
SynchronizedDoubleShortMap.collect(ShortToObjectFunction<? extends V> function) |
|
<V> MutableBag<V> |
SynchronizedFloatShortMap.collect(ShortToObjectFunction<? extends V> function) |
|
<V> MutableBag<V> |
SynchronizedIntShortMap.collect(ShortToObjectFunction<? extends V> function) |
|
<V> MutableBag<V> |
SynchronizedLongShortMap.collect(ShortToObjectFunction<? extends V> function) |
|
<V1> MutableCollection<V1> |
SynchronizedObjectShortMap.collect(ShortToObjectFunction<? extends V1> function) |
|
<V> MutableBag<V> |
SynchronizedShortShortMap.collect(ShortToObjectFunction<? extends V> function) |
|
<V> MutableBag<V> |
UnmodifiableByteShortMap.collect(ShortToObjectFunction<? extends V> function) |
|
<V> MutableBag<V> |
UnmodifiableCharShortMap.collect(ShortToObjectFunction<? extends V> function) |
|
<V> MutableBag<V> |
UnmodifiableDoubleShortMap.collect(ShortToObjectFunction<? extends V> function) |
|
<V> MutableBag<V> |
UnmodifiableFloatShortMap.collect(ShortToObjectFunction<? extends V> function) |
|
<V> MutableBag<V> |
UnmodifiableIntShortMap.collect(ShortToObjectFunction<? extends V> function) |
|
<V> MutableBag<V> |
UnmodifiableLongShortMap.collect(ShortToObjectFunction<? extends V> function) |
|
<V1> MutableCollection<V1> |
UnmodifiableObjectShortMap.collect(ShortToObjectFunction<? extends V1> function) |
|
<V> MutableBag<V> |
UnmodifiableShortShortMap.collect(ShortToObjectFunction<? extends V> function) |
|
V |
ShortObjectHashMap.getIfAbsentPutWithKey(short key,
ShortToObjectFunction<? extends V> function) |
|
V |
SynchronizedShortObjectMap.getIfAbsentPutWithKey(short key,
ShortToObjectFunction<? extends V> function) |
|
V |
UnmodifiableShortObjectMap.getIfAbsentPutWithKey(short key,
ShortToObjectFunction<? extends V> function) |
Modifier and Type | Method | Description |
---|---|---|
<V> RichIterable<V> |
SynchronizedShortIterable.collect(ShortToObjectFunction<? extends V> function) |
Modifier and Type | Method | Description |
---|---|---|
<V> MutableSet<V> |
ShortHashSet.collect(ShortToObjectFunction<? extends V> function) |
|
<V,R extends Collection<V>> |
ShortHashSet.collect(ShortToObjectFunction<? extends V> function,
R target) |
|
<V> MutableSet<V> |
SynchronizedShortSet.collect(ShortToObjectFunction<? extends V> function) |
|
<V> MutableSet<V> |
UnmodifiableShortSet.collect(ShortToObjectFunction<? extends V> function) |
Modifier and Type | Method | Description |
---|---|---|
<V> MutableStack<V> |
ShortArrayStack.collect(ShortToObjectFunction<? extends V> function) |
|
<V> MutableStack<V> |
SynchronizedShortStack.collect(ShortToObjectFunction<? extends V> function) |
|
<V> MutableStack<V> |
UnmodifiableShortStack.collect(ShortToObjectFunction<? extends V> function) |
Modifier and Type | Method | Description |
---|---|---|
static <V,R extends Collection<V>> |
ShortIterableIterate.collect(ShortIterable iterable,
ShortToObjectFunction<? extends V> function,
R targetCollection) |
|
static <V,R extends Collection<V>> |
ShortIteratorIterate.collect(ShortIterator iterator,
ShortToObjectFunction<? extends V> function,
R targetCollection) |
Modifier and Type | Method | Description |
---|---|---|
static <V> LazyIterable<V> |
LazyShortIterate.collect(ShortIterable iterable,
ShortToObjectFunction<? extends V> function) |
Creates a deferred transforming short iterable for the specified short iterable.
|
static <V> LazyIterable<V> |
LazyShortIterate.collectIf(ShortIterable iterable,
ShortPredicate predicate,
ShortToObjectFunction<? extends V> function) |
Creates a deferred filtering and transforming short iterable for the specified short iterable.
|
static <V> LazyIterable<V> |
LazyShortIterate.flatCollect(ShortIterable iterable,
ShortToObjectFunction<? extends Iterable<V>> function) |
Creates a deferred transforming and flattening short iterable for the specified short iterable.
|
Copyright © 2004–2019. All rights reserved.