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> RichIterable<V> |
ByteIterable.collect(ByteToObjectFunction<? 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 java.util.Collection<V>> |
ByteIterable.collect(ByteToObjectFunction<? extends V> function,
R target) |
Same as
ByteIterable.collect(ByteToObjectFunction) , only the results are added to the target Collection. |
<V> LazyIterable<V> |
LazyByteIterable.collect(ByteToObjectFunction<? extends V> function) |
|
default <V,R extends java.util.Collection<V>> |
ByteIterable.flatCollect(ByteToObjectFunction<? extends java.lang.Iterable<V>> function,
R target) |
flatCollect is a special case of ByteIterable.collect(ByteToObjectFunction) . |
<V> LazyIterable<V> |
LazyByteIterable.flatCollect(ByteToObjectFunction<? extends java.lang.Iterable<V>> function) |
Modifier and Type | Method | Description |
---|---|---|
<V> Bag<V> |
ByteBag.collect(ByteToObjectFunction<? extends V> function) |
|
<V> ImmutableBag<V> |
ImmutableByteBag.collect(ByteToObjectFunction<? extends V> function) |
|
<V> MutableBag<V> |
MutableByteBag.collect(ByteToObjectFunction<? extends V> function) |
Modifier and Type | Method | Description |
---|---|---|
<V> ImmutableCollection<V> |
ImmutableByteCollection.collect(ByteToObjectFunction<? extends V> function) |
|
<V> MutableCollection<V> |
MutableByteCollection.collect(ByteToObjectFunction<? extends V> function) |
Modifier and Type | Method | Description |
---|---|---|
<V> ListIterable<V> |
ByteList.collect(ByteToObjectFunction<? extends V> function) |
|
<V> ImmutableList<V> |
ImmutableByteList.collect(ByteToObjectFunction<? extends V> function) |
|
<V> MutableList<V> |
MutableByteList.collect(ByteToObjectFunction<? extends V> function) |
Modifier and Type | Method | Description |
---|---|---|
<V> Bag<V> |
ByteValuesMap.collect(ByteToObjectFunction<? extends V> function) |
|
<V> ImmutableBag<V> |
ImmutableByteByteMap.collect(ByteToObjectFunction<? extends V> function) |
|
<V> ImmutableBag<V> |
ImmutableCharByteMap.collect(ByteToObjectFunction<? extends V> function) |
|
<V> ImmutableBag<V> |
ImmutableDoubleByteMap.collect(ByteToObjectFunction<? extends V> function) |
|
<V> ImmutableBag<V> |
ImmutableFloatByteMap.collect(ByteToObjectFunction<? extends V> function) |
|
<V> ImmutableBag<V> |
ImmutableIntByteMap.collect(ByteToObjectFunction<? extends V> function) |
|
<V> ImmutableBag<V> |
ImmutableLongByteMap.collect(ByteToObjectFunction<? extends V> function) |
|
<V> ImmutableCollection<V> |
ImmutableObjectByteMap.collect(ByteToObjectFunction<? extends V> function) |
|
<V> ImmutableBag<V> |
ImmutableShortByteMap.collect(ByteToObjectFunction<? extends V> function) |
|
<V> MutableBag<V> |
MutableByteValuesMap.collect(ByteToObjectFunction<? extends V> function) |
|
<V> MutableCollection<V> |
MutableObjectByteMap.collect(ByteToObjectFunction<? extends V> function) |
|
V |
MutableByteObjectMap.getIfAbsentPutWithKey(byte key,
ByteToObjectFunction<? extends V> function) |
Modifier and Type | Method | Description |
---|---|---|
<V> OrderedIterable<V> |
OrderedByteIterable.collect(ByteToObjectFunction<? extends V> function) |
|
<V> ReversibleIterable<V> |
ReversibleByteIterable.collect(ByteToObjectFunction<? extends V> function) |
Modifier and Type | Method | Description |
---|---|---|
<V> SetIterable<V> |
ByteSet.collect(ByteToObjectFunction<? extends V> function) |
|
<V> ImmutableSet<V> |
ImmutableByteSet.collect(ByteToObjectFunction<? extends V> function) |
|
<V> MutableSet<V> |
MutableByteSet.collect(ByteToObjectFunction<? extends V> function) |
Modifier and Type | Method | Description |
---|---|---|
<V> StackIterable<V> |
ByteStack.collect(ByteToObjectFunction<? extends V> function) |
|
<V> ImmutableStack<V> |
ImmutableByteStack.collect(ByteToObjectFunction<? extends V> function) |
|
<V> MutableStack<V> |
MutableByteStack.collect(ByteToObjectFunction<? extends V> function) |
Modifier and Type | Method | Description |
---|---|---|
<V> MutableBag<V> |
ByteHashBag.collect(ByteToObjectFunction<? extends V> function) |
|
<V> MutableBag<V> |
SynchronizedByteBag.collect(ByteToObjectFunction<? extends V> function) |
|
<V> MutableBag<V> |
UnmodifiableByteBag.collect(ByteToObjectFunction<? extends V> function) |
Modifier and Type | Class | Description |
---|---|---|
class |
ByteCaseFunction<V> |
This file was automatically generated from template file primitiveCaseFunction.stg.
|
Modifier and Type | Method | Description |
---|---|---|
ByteCaseFunction<V> |
ByteCaseFunction.addCase(BytePredicate predicate,
ByteToObjectFunction<? extends V> function) |
|
ByteCaseFunction<V> |
ByteCaseFunction.setDefault(ByteToObjectFunction<? extends V> function) |
Constructor | Description |
---|---|
ByteCaseFunction(ByteToObjectFunction<? extends V> newDefaultFunction) |
Modifier and Type | Method | Description |
---|---|---|
<V> MutableCollection<V> |
AbstractSynchronizedByteCollection.collect(ByteToObjectFunction<? extends V> function) |
|
<V> MutableCollection<V> |
AbstractUnmodifiableByteCollection.collect(ByteToObjectFunction<? extends V> function) |
Modifier and Type | Method | Description |
---|---|---|
<V> LazyIterable<V> |
AbstractLazyByteIterable.collect(ByteToObjectFunction<? extends V> function) |
|
<V> LazyIterable<V> |
AbstractLazyByteIterable.flatCollect(ByteToObjectFunction<? extends java.lang.Iterable<V>> function) |
Constructor | Description |
---|---|
CollectByteToObjectIterable(ByteIterable iterable,
ByteToObjectFunction<? extends V> function) |
|
FlatCollectByteToObjectIterable(ByteIterable iterable,
ByteToObjectFunction<? extends java.lang.Iterable<V>> function) |
Modifier and Type | Method | Description |
---|---|---|
<V> MutableList<V> |
ByteArrayList.collect(ByteToObjectFunction<? extends V> function) |
|
<V,R extends java.util.Collection<V>> |
ByteArrayList.collect(ByteToObjectFunction<? extends V> function,
R target) |
|
<V> MutableList<V> |
SynchronizedByteList.collect(ByteToObjectFunction<? extends V> function) |
|
<V> MutableList<V> |
UnmodifiableByteList.collect(ByteToObjectFunction<? extends V> function) |
Modifier and Type | Method | Description |
---|---|---|
<V> MutableSet<V> |
AbstractMutableByteKeySet.collect(ByteToObjectFunction<? extends V> function) |
|
<V> MutableBag<V> |
AbstractMutableByteValuesMap.collect(ByteToObjectFunction<? extends V> function) |
|
<V> MutableCollection<V> |
ObjectByteHashMap.collect(ByteToObjectFunction<? extends V> function) |
|
<V> MutableCollection<V> |
ObjectByteHashMapWithHashingStrategy.collect(ByteToObjectFunction<? extends V> function) |
|
<V> MutableBag<V> |
SynchronizedByteByteMap.collect(ByteToObjectFunction<? extends V> function) |
|
<V> MutableBag<V> |
SynchronizedCharByteMap.collect(ByteToObjectFunction<? extends V> function) |
|
<V> MutableBag<V> |
SynchronizedDoubleByteMap.collect(ByteToObjectFunction<? extends V> function) |
|
<V> MutableBag<V> |
SynchronizedFloatByteMap.collect(ByteToObjectFunction<? extends V> function) |
|
<V> MutableBag<V> |
SynchronizedIntByteMap.collect(ByteToObjectFunction<? extends V> function) |
|
<V> MutableBag<V> |
SynchronizedLongByteMap.collect(ByteToObjectFunction<? extends V> function) |
|
<V1> MutableCollection<V1> |
SynchronizedObjectByteMap.collect(ByteToObjectFunction<? extends V1> function) |
|
<V> MutableBag<V> |
SynchronizedShortByteMap.collect(ByteToObjectFunction<? extends V> function) |
|
<V> MutableBag<V> |
UnmodifiableByteByteMap.collect(ByteToObjectFunction<? extends V> function) |
|
<V> MutableBag<V> |
UnmodifiableCharByteMap.collect(ByteToObjectFunction<? extends V> function) |
|
<V> MutableBag<V> |
UnmodifiableDoubleByteMap.collect(ByteToObjectFunction<? extends V> function) |
|
<V> MutableBag<V> |
UnmodifiableFloatByteMap.collect(ByteToObjectFunction<? extends V> function) |
|
<V> MutableBag<V> |
UnmodifiableIntByteMap.collect(ByteToObjectFunction<? extends V> function) |
|
<V> MutableBag<V> |
UnmodifiableLongByteMap.collect(ByteToObjectFunction<? extends V> function) |
|
<V1> MutableCollection<V1> |
UnmodifiableObjectByteMap.collect(ByteToObjectFunction<? extends V1> function) |
|
<V> MutableBag<V> |
UnmodifiableShortByteMap.collect(ByteToObjectFunction<? extends V> function) |
|
V |
ByteObjectHashMap.getIfAbsentPutWithKey(byte key,
ByteToObjectFunction<? extends V> function) |
|
V |
SynchronizedByteObjectMap.getIfAbsentPutWithKey(byte key,
ByteToObjectFunction<? extends V> function) |
|
V |
UnmodifiableByteObjectMap.getIfAbsentPutWithKey(byte key,
ByteToObjectFunction<? extends V> function) |
Modifier and Type | Method | Description |
---|---|---|
<V> RichIterable<V> |
SynchronizedByteIterable.collect(ByteToObjectFunction<? extends V> function) |
Modifier and Type | Method | Description |
---|---|---|
<V> MutableSet<V> |
ByteHashSet.collect(ByteToObjectFunction<? extends V> function) |
|
<V> MutableSet<V> |
SynchronizedByteSet.collect(ByteToObjectFunction<? extends V> function) |
|
<V> MutableSet<V> |
UnmodifiableByteSet.collect(ByteToObjectFunction<? extends V> function) |
Modifier and Type | Method | Description |
---|---|---|
<V> MutableStack<V> |
ByteArrayStack.collect(ByteToObjectFunction<? extends V> function) |
|
<V> MutableStack<V> |
SynchronizedByteStack.collect(ByteToObjectFunction<? extends V> function) |
|
<V> MutableStack<V> |
UnmodifiableByteStack.collect(ByteToObjectFunction<? extends V> function) |
Modifier and Type | Method | Description |
---|---|---|
static <V,R extends java.util.Collection<V>> |
ByteIterableIterate.collect(ByteIterable iterable,
ByteToObjectFunction<? extends V> function,
R targetCollection) |
|
static <V,R extends java.util.Collection<V>> |
ByteIteratorIterate.collect(ByteIterator iterator,
ByteToObjectFunction<? extends V> function,
R targetCollection) |
Modifier and Type | Method | Description |
---|---|---|
static <V> LazyIterable<V> |
LazyByteIterate.collect(ByteIterable iterable,
ByteToObjectFunction<? extends V> function) |
Creates a deferred transforming byte iterable for the specified byte iterable.
|
static <V> LazyIterable<V> |
LazyByteIterate.collectIf(ByteIterable iterable,
BytePredicate predicate,
ByteToObjectFunction<? extends V> function) |
Creates a deferred filtering and transforming byte iterable for the specified byte iterable.
|
static <V> LazyIterable<V> |
LazyByteIterate.flatCollect(ByteIterable iterable,
ByteToObjectFunction<? extends java.lang.Iterable<V>> function) |
Creates a deferred transforming and flattening byte iterable for the specified byte iterable.
|
Copyright © 2004–2018. All rights reserved.