| 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.factory.map.primitive | |
| 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 |
|---|---|
ByteIterable |
RichIterable.collectByte(ByteFunction<? super T> byteFunction)
Returns a new primitive
byte iterable with the results of applying the specified function on each element
of the source collection. |
LazyByteIterable |
LazyIterable.collectByte(ByteFunction<? super T> byteFunction)
Returns a lazy ByteIterable which will transform the underlying iterable data to byte values based on the byteFunction.
|
<R extends MutableByteCollection> |
RichIterable.collectByte(ByteFunction<? super T> byteFunction,
R target)
Same as
RichIterable.collectByte(ByteFunction), except that the results are gathered into the specified target
collection. |
| Modifier and Type | Method and Description |
|---|---|
ByteBag |
UnsortedBag.collectByte(ByteFunction<? super T> byteFunction) |
MutableByteBag |
MutableBag.collectByte(ByteFunction<? super T> byteFunction) |
ImmutableByteBag |
ImmutableBag.collectByte(ByteFunction<? super T> byteFunction) |
| Modifier and Type | Method and Description |
|---|---|
ByteList |
SortedBag.collectByte(ByteFunction<? super T> byteFunction) |
MutableByteList |
MutableSortedBag.collectByte(ByteFunction<? super T> byteFunction) |
ImmutableByteList |
ImmutableSortedBag.collectByte(ByteFunction<? super T> byteFunction) |
| Modifier and Type | Method and Description |
|---|---|
MutableByteCollection |
MutableCollection.collectByte(ByteFunction<? super T> byteFunction)
Returns a new primitive
byte iterable with the results of applying the specified function on each element
of the source collection. |
ImmutableByteCollection |
ImmutableCollection.collectByte(ByteFunction<? super T> byteFunction) |
| Modifier and Type | Method and Description |
|---|---|
<T> MutableByteBooleanMap |
MutableByteBooleanMapFactory.from(Iterable<T> iterable,
ByteFunction<? super T> keyFunction,
BooleanFunction<? super T> valueFunction)
Creates an
MutableByteBooleanMap from an Iterable<T> by applying keyFunction and valueFunction. |
<T> ImmutableByteBooleanMap |
ImmutableByteBooleanMapFactory.from(Iterable<T> iterable,
ByteFunction<? super T> keyFunction,
BooleanFunction<? super T> valueFunction)
Creates an
ImmutableByteBooleanMap from an Iterable<T> by applying keyFunction and valueFunction. |
<T> MutableByteByteMap |
MutableByteByteMapFactory.from(Iterable<T> iterable,
ByteFunction<? super T> keyFunction,
ByteFunction<? super T> valueFunction)
Creates an
MutableByteByteMap from an Iterable<T> by applying keyFunction and valueFunction. |
<T> MutableByteByteMap |
MutableByteByteMapFactory.from(Iterable<T> iterable,
ByteFunction<? super T> keyFunction,
ByteFunction<? super T> valueFunction)
Creates an
MutableByteByteMap from an Iterable<T> by applying keyFunction and valueFunction. |
<T> ImmutableByteByteMap |
ImmutableByteByteMapFactory.from(Iterable<T> iterable,
ByteFunction<? super T> keyFunction,
ByteFunction<? super T> valueFunction)
Creates an
ImmutableByteByteMap from an Iterable<T> by applying keyFunction and valueFunction. |
<T> ImmutableByteByteMap |
ImmutableByteByteMapFactory.from(Iterable<T> iterable,
ByteFunction<? super T> keyFunction,
ByteFunction<? super T> valueFunction)
Creates an
ImmutableByteByteMap from an Iterable<T> by applying keyFunction and valueFunction. |
<T> MutableByteCharMap |
MutableByteCharMapFactory.from(Iterable<T> iterable,
ByteFunction<? super T> keyFunction,
CharFunction<? super T> valueFunction)
Creates an
MutableByteCharMap from an Iterable<T> by applying keyFunction and valueFunction. |
<T> ImmutableByteCharMap |
ImmutableByteCharMapFactory.from(Iterable<T> iterable,
ByteFunction<? super T> keyFunction,
CharFunction<? super T> valueFunction)
Creates an
ImmutableByteCharMap from an Iterable<T> by applying keyFunction and valueFunction. |
<T> MutableByteDoubleMap |
MutableByteDoubleMapFactory.from(Iterable<T> iterable,
ByteFunction<? super T> keyFunction,
DoubleFunction<? super T> valueFunction)
Creates an
MutableByteDoubleMap from an Iterable<T> by applying keyFunction and valueFunction. |
<T> ImmutableByteDoubleMap |
ImmutableByteDoubleMapFactory.from(Iterable<T> iterable,
ByteFunction<? super T> keyFunction,
DoubleFunction<? super T> valueFunction)
Creates an
ImmutableByteDoubleMap from an Iterable<T> by applying keyFunction and valueFunction. |
<T> MutableByteFloatMap |
MutableByteFloatMapFactory.from(Iterable<T> iterable,
ByteFunction<? super T> keyFunction,
FloatFunction<? super T> valueFunction)
Creates an
MutableByteFloatMap from an Iterable<T> by applying keyFunction and valueFunction. |
<T> ImmutableByteFloatMap |
ImmutableByteFloatMapFactory.from(Iterable<T> iterable,
ByteFunction<? super T> keyFunction,
FloatFunction<? super T> valueFunction)
Creates an
ImmutableByteFloatMap from an Iterable<T> by applying keyFunction and valueFunction. |
<T,V> MutableByteObjectMap<V> |
MutableByteObjectMapFactory.from(Iterable<T> iterable,
ByteFunction<? super T> keyFunction,
Function<? super T,? extends V> valueFunction)
Creates an
MutableByteObjectMap from an Iterable<T> by applying keyFunction and valueFunction. |
<T,V> ImmutableByteObjectMap<V> |
ImmutableByteObjectMapFactory.from(Iterable<T> iterable,
ByteFunction<? super T> keyFunction,
Function<? super T,? extends V> valueFunction)
Creates an
ImmutableByteObjectMap from an Iterable<T> by applying keyFunction and valueFunction. |
<T> MutableByteIntMap |
MutableByteIntMapFactory.from(Iterable<T> iterable,
ByteFunction<? super T> keyFunction,
IntFunction<? super T> valueFunction)
Creates an
MutableByteIntMap from an Iterable<T> by applying keyFunction and valueFunction. |
<T> ImmutableByteIntMap |
ImmutableByteIntMapFactory.from(Iterable<T> iterable,
ByteFunction<? super T> keyFunction,
IntFunction<? super T> valueFunction)
Creates an
ImmutableByteIntMap from an Iterable<T> by applying keyFunction and valueFunction. |
<T> MutableByteLongMap |
MutableByteLongMapFactory.from(Iterable<T> iterable,
ByteFunction<? super T> keyFunction,
LongFunction<? super T> valueFunction)
Creates an
MutableByteLongMap from an Iterable<T> by applying keyFunction and valueFunction. |
<T> ImmutableByteLongMap |
ImmutableByteLongMapFactory.from(Iterable<T> iterable,
ByteFunction<? super T> keyFunction,
LongFunction<? super T> valueFunction)
Creates an
ImmutableByteLongMap from an Iterable<T> by applying keyFunction and valueFunction. |
<T> MutableByteShortMap |
MutableByteShortMapFactory.from(Iterable<T> iterable,
ByteFunction<? super T> keyFunction,
ShortFunction<? super T> valueFunction)
Creates an
MutableByteShortMap from an Iterable<T> by applying keyFunction and valueFunction. |
<T> ImmutableByteShortMap |
ImmutableByteShortMapFactory.from(Iterable<T> iterable,
ByteFunction<? super T> keyFunction,
ShortFunction<? super T> valueFunction)
Creates an
ImmutableByteShortMap from an Iterable<T> by applying keyFunction and valueFunction. |
<T> MutableCharByteMap |
MutableCharByteMapFactory.from(Iterable<T> iterable,
CharFunction<? super T> keyFunction,
ByteFunction<? super T> valueFunction)
Creates an
MutableCharByteMap from an Iterable<T> by applying keyFunction and valueFunction. |
<T> ImmutableCharByteMap |
ImmutableCharByteMapFactory.from(Iterable<T> iterable,
CharFunction<? super T> keyFunction,
ByteFunction<? super T> valueFunction)
Creates an
ImmutableCharByteMap from an Iterable<T> by applying keyFunction and valueFunction. |
<T> MutableDoubleByteMap |
MutableDoubleByteMapFactory.from(Iterable<T> iterable,
DoubleFunction<? super T> keyFunction,
ByteFunction<? super T> valueFunction)
Creates an
MutableDoubleByteMap from an Iterable<T> by applying keyFunction and valueFunction. |
<T> ImmutableDoubleByteMap |
ImmutableDoubleByteMapFactory.from(Iterable<T> iterable,
DoubleFunction<? super T> keyFunction,
ByteFunction<? super T> valueFunction)
Creates an
ImmutableDoubleByteMap from an Iterable<T> by applying keyFunction and valueFunction. |
<T> MutableFloatByteMap |
MutableFloatByteMapFactory.from(Iterable<T> iterable,
FloatFunction<? super T> keyFunction,
ByteFunction<? super T> valueFunction)
Creates an
MutableFloatByteMap from an Iterable<T> by applying keyFunction and valueFunction. |
<T> ImmutableFloatByteMap |
ImmutableFloatByteMapFactory.from(Iterable<T> iterable,
FloatFunction<? super T> keyFunction,
ByteFunction<? super T> valueFunction)
Creates an
ImmutableFloatByteMap from an Iterable<T> by applying keyFunction and valueFunction. |
<T,K> MutableObjectByteMap<K> |
MutableObjectByteMapFactory.from(Iterable<T> iterable,
Function<? super T,? extends K> keyFunction,
ByteFunction<? super T> valueFunction)
Creates an
MutableObjectByteMap from an Iterable<T> by applying keyFunction and valueFunction. |
<T,K> ImmutableObjectByteMap<K> |
ImmutableObjectByteMapFactory.from(Iterable<T> iterable,
Function<? super T,? extends K> keyFunction,
ByteFunction<? super T> valueFunction)
Creates an
ImmutableObjectByteMap from an Iterable<T> by applying keyFunction and valueFunction. |
<T> MutableIntByteMap |
MutableIntByteMapFactory.from(Iterable<T> iterable,
IntFunction<? super T> keyFunction,
ByteFunction<? super T> valueFunction)
Creates an
MutableIntByteMap from an Iterable<T> by applying keyFunction and valueFunction. |
<T> ImmutableIntByteMap |
ImmutableIntByteMapFactory.from(Iterable<T> iterable,
IntFunction<? super T> keyFunction,
ByteFunction<? super T> valueFunction)
Creates an
ImmutableIntByteMap from an Iterable<T> by applying keyFunction and valueFunction. |
<T> MutableLongByteMap |
MutableLongByteMapFactory.from(Iterable<T> iterable,
LongFunction<? super T> keyFunction,
ByteFunction<? super T> valueFunction)
Creates an
MutableLongByteMap from an Iterable<T> by applying keyFunction and valueFunction. |
<T> ImmutableLongByteMap |
ImmutableLongByteMapFactory.from(Iterable<T> iterable,
LongFunction<? super T> keyFunction,
ByteFunction<? super T> valueFunction)
Creates an
ImmutableLongByteMap from an Iterable<T> by applying keyFunction and valueFunction. |
<T> MutableShortByteMap |
MutableShortByteMapFactory.from(Iterable<T> iterable,
ShortFunction<? super T> keyFunction,
ByteFunction<? super T> valueFunction)
Creates an
MutableShortByteMap from an Iterable<T> by applying keyFunction and valueFunction. |
<T> ImmutableShortByteMap |
ImmutableShortByteMapFactory.from(Iterable<T> iterable,
ShortFunction<? super T> keyFunction,
ByteFunction<? super T> valueFunction)
Creates an
ImmutableShortByteMap from an Iterable<T> by applying keyFunction and valueFunction. |
| Modifier and Type | Method and Description |
|---|---|
MutableByteList |
MutableList.collectByte(ByteFunction<? super T> byteFunction) |
ByteList |
ListIterable.collectByte(ByteFunction<? super T> byteFunction) |
ImmutableByteList |
ImmutableList.collectByte(ByteFunction<? super T> byteFunction) |
MutableList<T> |
MutableList.sortThisByByte(ByteFunction<? super T> function) |
MultiReaderList<T> |
MultiReaderList.sortThisByByte(ByteFunction<? super T> function) |
| Modifier and Type | Method and Description |
|---|---|
ByteBag |
UnsortedMapIterable.collectByte(ByteFunction<? super V> byteFunction) |
ByteList |
OrderedMap.collectByte(ByteFunction<? super V> byteFunction) |
MutableByteList |
MutableOrderedMap.collectByte(ByteFunction<? super V> byteFunction) |
MutableByteBag |
MutableMap.collectByte(ByteFunction<? super V> byteFunction) |
ImmutableByteList |
ImmutableOrderedMap.collectByte(ByteFunction<? super V> byteFunction) |
ImmutableByteBag |
ImmutableMap.collectByte(ByteFunction<? super V> byteFunction) |
| Modifier and Type | Method and Description |
|---|---|
ByteBag |
PrimitiveObjectMap.collectByte(ByteFunction<? super V> byteFunction) |
MutableByteBag |
MutablePrimitiveObjectMap.collectByte(ByteFunction<? super V> byteFunction) |
ImmutableByteBag |
ImmutablePrimitiveObjectMap.collectByte(ByteFunction<? super V> byteFunction) |
<P> byte |
MutableByteByteMap.getIfAbsentPutWith(byte key,
ByteFunction<? super P> function,
P parameter)
Retrieves the value associated with the key if one exists; if it does not,
invokes the value function with the parameter and associates the result with the key.
|
<P> byte |
MutableCharByteMap.getIfAbsentPutWith(char key,
ByteFunction<? super P> function,
P parameter)
Retrieves the value associated with the key if one exists; if it does not,
invokes the value function with the parameter and associates the result with the key.
|
<P> byte |
MutableDoubleByteMap.getIfAbsentPutWith(double key,
ByteFunction<? super P> function,
P parameter)
Retrieves the value associated with the key if one exists; if it does not,
invokes the value function with the parameter and associates the result with the key.
|
<P> byte |
MutableFloatByteMap.getIfAbsentPutWith(float key,
ByteFunction<? super P> function,
P parameter)
Retrieves the value associated with the key if one exists; if it does not,
invokes the value function with the parameter and associates the result with the key.
|
<P> byte |
MutableIntByteMap.getIfAbsentPutWith(int key,
ByteFunction<? super P> function,
P parameter)
Retrieves the value associated with the key if one exists; if it does not,
invokes the value function with the parameter and associates the result with the key.
|
<P> byte |
MutableObjectByteMap.getIfAbsentPutWith(K key,
ByteFunction<? super P> function,
P parameter)
Retrieves the value associated with the key if one exists; if it does not,
invokes the value function with the parameter and associates the result with the key.
|
<P> byte |
MutableLongByteMap.getIfAbsentPutWith(long key,
ByteFunction<? super P> function,
P parameter)
Retrieves the value associated with the key if one exists; if it does not,
invokes the value function with the parameter and associates the result with the key.
|
<P> byte |
MutableShortByteMap.getIfAbsentPutWith(short key,
ByteFunction<? super P> function,
P parameter)
Retrieves the value associated with the key if one exists; if it does not,
invokes the value function with the parameter and associates the result with the key.
|
byte |
MutableObjectByteMap.getIfAbsentPutWithKey(K key,
ByteFunction<? super K> function)
Retrieves the value associated with the key if one exists; if it does not,
associates the result of invoking the value function with the key.
|
| Modifier and Type | Method and Description |
|---|---|
ByteList |
SortedMapIterable.collectByte(ByteFunction<? super V> byteFunction) |
MutableByteList |
MutableSortedMap.collectByte(ByteFunction<? super V> byteFunction) |
ImmutableByteList |
ImmutableSortedMap.collectByte(ByteFunction<? super V> byteFunction) |
| Modifier and Type | Method and Description |
|---|---|
ReversibleByteIterable |
ReversibleIterable.collectByte(ByteFunction<? super T> byteFunction) |
OrderedByteIterable |
OrderedIterable.collectByte(ByteFunction<? super T> byteFunction) |
| Modifier and Type | Method and Description |
|---|---|
ByteSet |
UnsortedSetIterable.collectByte(ByteFunction<? super T> byteFunction) |
MutableByteSet |
MutableSet.collectByte(ByteFunction<? super T> byteFunction) |
ImmutableByteSet |
ImmutableSet.collectByte(ByteFunction<? super T> byteFunction) |
| Modifier and Type | Method and Description |
|---|---|
ByteList |
SortedSetIterable.collectByte(ByteFunction<? super T> byteFunction) |
MutableByteList |
MutableSortedSet.collectByte(ByteFunction<? super T> byteFunction) |
ImmutableByteList |
ImmutableSortedSet.collectByte(ByteFunction<? super T> byteFunction) |
| Modifier and Type | Method and Description |
|---|---|
ByteStack |
StackIterable.collectByte(ByteFunction<? super T> byteFunction) |
MutableByteStack |
MutableStack.collectByte(ByteFunction<? super T> byteFunction) |
ImmutableByteStack |
ImmutableStack.collectByte(ByteFunction<? super T> byteFunction) |
Copyright © 2004–2020. All rights reserved.