| Package | Description |
|---|---|
| org.eclipse.collections.api |
This package contains interfaces for Eclipse Collections API.
|
| org.eclipse.collections.api.bag |
This package contains interfaces for Bag API.
|
| org.eclipse.collections.api.bag.sorted |
This package contains interfaces for SortedBag API.
|
| org.eclipse.collections.api.collection | |
| org.eclipse.collections.api.list |
This package contains interfaces for list API which enhance the performance and functionality of
List. |
| 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.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.map.sorted |
This package contains mutable and immutable sorted map interfaces.
|
| org.eclipse.collections.api.ordered | |
| org.eclipse.collections.api.set |
This package contains interfaces for set API which enhance the performance and functionality of
Set. |
| org.eclipse.collections.api.set.sorted |
This package contains interfaces for sorted set API.
|
| org.eclipse.collections.api.stack |
This package contains interfaces for stack API.
|
| Modifier and Type | Method and Description |
|---|---|
ShortIterable |
RichIterable.collectShort(ShortFunction<? super T> shortFunction)
Returns a new primitive
short iterable with the results of applying the specified function on each element
of the source collection. |
LazyShortIterable |
LazyIterable.collectShort(ShortFunction<? super T> shortFunction)
Returns a lazy ShortIterable which will transform the underlying iterable data to short values based on the shortFunction.
|
<R extends MutableShortCollection> |
RichIterable.collectShort(ShortFunction<? super T> shortFunction,
R target)
Same as
RichIterable.collectShort(ShortFunction), except that the results are gathered into the specified target
collection. |
| Modifier and Type | Method and Description |
|---|---|
MutableShortBag |
MutableBag.collectShort(ShortFunction<? super T> shortFunction) |
ImmutableShortBag |
ImmutableBag.collectShort(ShortFunction<? super T> shortFunction) |
ShortBag |
UnsortedBag.collectShort(ShortFunction<? super T> shortFunction) |
| Modifier and Type | Method and Description |
|---|---|
MutableShortList |
MutableSortedBag.collectShort(ShortFunction<? super T> shortFunction) |
ImmutableShortList |
ImmutableSortedBag.collectShort(ShortFunction<? super T> shortFunction) |
ShortList |
SortedBag.collectShort(ShortFunction<? super T> shortFunction) |
| Modifier and Type | Method and Description |
|---|---|
MutableShortCollection |
MutableCollection.collectShort(ShortFunction<? super T> shortFunction)
Returns a new primitive
short iterable with the results of applying the specified function on each element
of the source collection. |
ImmutableShortCollection |
ImmutableCollection.collectShort(ShortFunction<? super T> shortFunction) |
| Modifier and Type | Method and Description |
|---|---|
ShortList |
ListIterable.collectShort(ShortFunction<? super T> shortFunction) |
MutableShortList |
MutableList.collectShort(ShortFunction<? super T> shortFunction) |
ImmutableShortList |
ImmutableList.collectShort(ShortFunction<? super T> shortFunction) |
MutableList<T> |
MutableList.sortThisByShort(ShortFunction<? super T> function) |
| Modifier and Type | Method and Description |
|---|---|
ImmutableShortBag |
ImmutableMap.collectShort(ShortFunction<? super V> shortFunction) |
ShortBag |
UnsortedMapIterable.collectShort(ShortFunction<? super V> shortFunction) |
ShortList |
OrderedMap.collectShort(ShortFunction<? super V> shortFunction) |
MutableShortList |
MutableOrderedMap.collectShort(ShortFunction<? super V> shortFunction) |
MutableShortBag |
MutableMap.collectShort(ShortFunction<? super V> shortFunction) |
ImmutableShortList |
ImmutableOrderedMap.collectShort(ShortFunction<? super V> shortFunction) |
| Modifier and Type | Method and Description |
|---|---|
ShortBag |
PrimitiveObjectMap.collectShort(ShortFunction<? super V> shortFunction) |
MutableShortBag |
MutablePrimitiveObjectMap.collectShort(ShortFunction<? super V> shortFunction) |
ImmutableShortBag |
ImmutablePrimitiveObjectMap.collectShort(ShortFunction<? super V> shortFunction) |
<P> short |
MutableByteShortMap.getIfAbsentPutWith(byte key,
ShortFunction<? super P> function,
P parameter) |
<P> short |
MutableCharShortMap.getIfAbsentPutWith(char key,
ShortFunction<? super P> function,
P parameter) |
<P> short |
MutableDoubleShortMap.getIfAbsentPutWith(double key,
ShortFunction<? super P> function,
P parameter) |
<P> short |
MutableFloatShortMap.getIfAbsentPutWith(float key,
ShortFunction<? super P> function,
P parameter) |
<P> short |
MutableIntShortMap.getIfAbsentPutWith(int key,
ShortFunction<? super P> function,
P parameter) |
<P> short |
MutableObjectShortMap.getIfAbsentPutWith(K key,
ShortFunction<? super P> function,
P parameter) |
<P> short |
MutableLongShortMap.getIfAbsentPutWith(long key,
ShortFunction<? super P> function,
P parameter) |
<P> short |
MutableShortShortMap.getIfAbsentPutWith(short key,
ShortFunction<? super P> function,
P parameter) |
short |
MutableObjectShortMap.getIfAbsentPutWithKey(K key,
ShortFunction<? super K> function) |
| Modifier and Type | Method and Description |
|---|---|
ImmutableShortList |
ImmutableSortedMap.collectShort(ShortFunction<? super V> shortFunction) |
ShortList |
SortedMapIterable.collectShort(ShortFunction<? super V> shortFunction) |
MutableShortList |
MutableSortedMap.collectShort(ShortFunction<? super V> shortFunction) |
| Modifier and Type | Method and Description |
|---|---|
ReversibleShortIterable |
ReversibleIterable.collectShort(ShortFunction<? super T> shortFunction) |
OrderedShortIterable |
OrderedIterable.collectShort(ShortFunction<? super T> shortFunction) |
| Modifier and Type | Method and Description |
|---|---|
ImmutableShortSet |
ImmutableSet.collectShort(ShortFunction<? super T> shortFunction) |
ShortSet |
UnsortedSetIterable.collectShort(ShortFunction<? super T> shortFunction) |
MutableShortSet |
MutableSet.collectShort(ShortFunction<? super T> shortFunction) |
| Modifier and Type | Method and Description |
|---|---|
ImmutableShortList |
ImmutableSortedSet.collectShort(ShortFunction<? super T> shortFunction) |
ShortList |
SortedSetIterable.collectShort(ShortFunction<? super T> shortFunction) |
MutableShortList |
MutableSortedSet.collectShort(ShortFunction<? super T> shortFunction) |
| Modifier and Type | Method and Description |
|---|---|
MutableShortStack |
MutableStack.collectShort(ShortFunction<? super T> shortFunction) |
ImmutableShortStack |
ImmutableStack.collectShort(ShortFunction<? super T> shortFunction) |
ShortStack |
StackIterable.collectShort(ShortFunction<? super T> shortFunction) |
Copyright © 2004–2017. All rights reserved.