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.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 the
MutableBiMap 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 the
MutableCollection 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.list.mutable |
This package contains implementations of the
MutableList interface. |
org.eclipse.collections.impl.list.mutable.primitive |
This package contains implementations of the mutable primitive list interfaces.
|
org.eclipse.collections.impl.map.mutable |
This package contains implementations of the
MutableMap 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.sorted.mutable |
This package contains implementations of the
MutableSortedMap interface. |
org.eclipse.collections.impl.set.mutable.primitive |
This package contains implementations of the mutable primitive set interfaces.
|
org.eclipse.collections.impl.stack.mutable |
This package contains implementations of the
MutableStack interface. |
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 |
Modifier and Type | Method | Description |
---|---|---|
default <R extends MutableByteCollection> |
BooleanIterable.collectByte(BooleanToByteFunction function,
R target) |
Returns the target
MutableByteCollection with the results of applying the specified function on each element
of the source collection. |
default <R extends MutableByteCollection> |
ByteIterable.collectByte(ByteToByteFunction function,
R target) |
Returns the target
MutableByteCollection with the results of applying the specified function on each element
of the source collection. |
default <R extends MutableByteCollection> |
CharIterable.collectByte(CharToByteFunction function,
R target) |
Returns the target
MutableByteCollection with the results of applying the specified function on each element
of the source collection. |
default <R extends MutableByteCollection> |
DoubleIterable.collectByte(DoubleToByteFunction function,
R target) |
Returns the target
MutableByteCollection with the results of applying the specified function on each element
of the source collection. |
default <R extends MutableByteCollection> |
FloatIterable.collectByte(FloatToByteFunction function,
R target) |
Returns the target
MutableByteCollection with the results of applying the specified function on each element
of the source collection. |
default <R extends MutableByteCollection> |
IntIterable.collectByte(IntToByteFunction function,
R target) |
Returns the target
MutableByteCollection with the results of applying the specified function on each element
of the source collection. |
default <R extends MutableByteCollection> |
LongIterable.collectByte(LongToByteFunction function,
R target) |
Returns the target
MutableByteCollection with the results of applying the specified function on each element
of the source collection. |
<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. |
default <R extends MutableByteCollection> |
ShortIterable.collectByte(ShortToByteFunction function,
R target) |
Returns the target
MutableByteCollection with the results of applying the specified function on each element
of the source collection. |
default <R extends MutableByteCollection> |
ByteIterable.reject(BytePredicate predicate,
R target) |
Same as
ByteIterable.reject(BytePredicate) , only the results are added to the target MutableByteCollection. |
default <R extends MutableByteCollection> |
ByteIterable.select(BytePredicate predicate,
R target) |
Same as
ByteIterable.select(BytePredicate) , only the results are added to the target MutableByteCollection. |
Modifier and Type | Interface | Description |
---|---|---|
interface |
MutableByteBag |
This file was automatically generated from template file mutablePrimitiveBag.stg.
|
Modifier and Type | Method | 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. |
Modifier and Type | Method | Description |
---|---|---|
MutableByteCollection |
MutableByteCollection.asSynchronized() |
|
MutableByteCollection |
MutableByteCollection.asUnmodifiable() |
|
MutableByteCollection |
MutableByteCollection.reject(BytePredicate predicate) |
|
MutableByteCollection |
MutableByteCollection.select(BytePredicate predicate) |
|
default MutableByteCollection |
MutableByteCollection.tap(ByteProcedure procedure) |
|
MutableByteCollection |
MutableByteCollection.with(byte element) |
|
MutableByteCollection |
MutableByteCollection.withAll(ByteIterable elements) |
|
MutableByteCollection |
MutableByteCollection.without(byte element) |
|
MutableByteCollection |
MutableByteCollection.withoutAll(ByteIterable elements) |
Modifier and Type | Interface | Description |
---|---|---|
interface |
MutableByteList |
This file was automatically generated from template file mutablePrimitiveList.stg.
|
Modifier and Type | Method | Description |
---|---|---|
MutableByteCollection |
MutableObjectByteMap.reject(BytePredicate predicate) |
|
MutableByteCollection |
MutableObjectByteMap.select(BytePredicate predicate) |
|
MutableByteCollection |
ByteValuesMap.values() |
|
MutableByteCollection |
ObjectByteMap.values() |
Modifier and Type | Interface | Description |
---|---|---|
interface |
MutableByteSet |
This file was automatically generated from template file mutablePrimitiveSet.stg.
|
Modifier and Type | Method | Description |
---|---|---|
<R extends MutableByteCollection> |
AbstractRichIterable.collectByte(ByteFunction<? super T> byteFunction,
R target) |
|
<R extends MutableByteCollection> |
UnmodifiableRichIterable.collectByte(ByteFunction<? super T> byteFunction,
R target) |
Modifier and Type | Method | Description |
---|---|---|
<R extends MutableByteCollection> |
AbstractBag.collectByte(ByteFunction<? super T> byteFunction,
R target) |
Modifier and Type | Class | Description |
---|---|---|
class |
ByteHashBag |
ByteHashBag is similar to
HashBag , and is memory-optimized for byte primitives. |
class |
SynchronizedByteBag |
A synchronized view of a
MutableByteBag . |
class |
UnmodifiableByteBag |
This file was automatically generated from template file unmodifiablePrimitiveBag.stg.
|
Modifier and Type | Method | Description |
---|---|---|
<R extends MutableByteCollection> |
AbstractBiMap.collectByte(ByteFunction<? super V> byteFunction,
R target) |
Modifier and Type | Method | Description |
---|---|---|
<R extends MutableByteCollection> |
UnmodifiableBiMap.collectByte(ByteFunction<? super V> byteFunction,
R target) |
Modifier and Type | Method | Description |
---|---|---|
MutableByteCollection |
CollectByteProcedure.getByteCollection() |
Constructor | Description |
---|---|
CollectByteProcedure(ByteFunction<? super T> byteFunction,
MutableByteCollection targetCollection) |
Modifier and Type | Method | Description |
---|---|---|
<R extends MutableByteCollection> |
AbstractSynchronizedRichIterable.collectByte(ByteFunction<? super T> byteFunction,
R target) |
Modifier and Type | Method | Description |
---|---|---|
<R extends MutableByteCollection> |
AbstractCollectionAdapter.collectByte(ByteFunction<? super T> byteFunction,
R target) |
|
<R extends MutableByteCollection> |
AbstractMultiReaderMutableCollection.collectByte(ByteFunction<? super T> byteFunction,
R target) |
|
<R extends MutableByteCollection> |
AbstractUnmodifiableMutableCollection.collectByte(ByteFunction<? super T> byteFunction,
R target) |
Modifier and Type | Method | Description |
---|---|---|
MutableByteCollection |
AbstractCollectionAdapter.collectByte(ByteFunction<? super T> byteFunction) |
|
MutableByteCollection |
AbstractSynchronizedMutableCollection.collectByte(ByteFunction<? super T> byteFunction) |
|
MutableByteCollection |
AbstractUnmodifiableMutableCollection.collectByte(ByteFunction<? super T> byteFunction) |
Modifier and Type | Class | Description |
---|---|---|
class |
AbstractSynchronizedByteCollection |
This file was automatically generated from template file abstractSynchronizedPrimitiveCollection.stg.
|
class |
AbstractUnmodifiableByteCollection |
This file was automatically generated from template file abstractUnmodifiablePrimitiveCollection.stg.
|
class |
SynchronizedByteCollection |
This file was automatically generated from template file synchronizedPrimitiveCollection.stg.
|
class |
UnmodifiableByteCollection |
This file was automatically generated from template file unmodifiablePrimitiveCollection.stg.
|
Modifier and Type | Method | Description |
---|---|---|
MutableByteCollection |
AbstractSynchronizedByteCollection.asSynchronized() |
|
MutableByteCollection |
AbstractUnmodifiableByteCollection.asSynchronized() |
|
MutableByteCollection |
AbstractSynchronizedByteCollection.asUnmodifiable() |
|
MutableByteCollection |
AbstractUnmodifiableByteCollection.asUnmodifiable() |
|
MutableByteCollection |
AbstractSynchronizedByteCollection.reject(BytePredicate predicate) |
|
MutableByteCollection |
AbstractUnmodifiableByteCollection.reject(BytePredicate predicate) |
|
MutableByteCollection |
AbstractSynchronizedByteCollection.select(BytePredicate predicate) |
|
MutableByteCollection |
AbstractUnmodifiableByteCollection.select(BytePredicate predicate) |
|
MutableByteCollection |
AbstractSynchronizedByteCollection.with(byte element) |
|
MutableByteCollection |
AbstractUnmodifiableByteCollection.with(byte element) |
|
MutableByteCollection |
AbstractSynchronizedByteCollection.withAll(ByteIterable elements) |
|
MutableByteCollection |
AbstractUnmodifiableByteCollection.withAll(ByteIterable elements) |
|
MutableByteCollection |
AbstractSynchronizedByteCollection.without(byte element) |
|
MutableByteCollection |
AbstractUnmodifiableByteCollection.without(byte element) |
|
MutableByteCollection |
AbstractSynchronizedByteCollection.withoutAll(ByteIterable elements) |
|
MutableByteCollection |
AbstractUnmodifiableByteCollection.withoutAll(ByteIterable elements) |
Modifier and Type | Method | Description |
---|---|---|
static SynchronizedByteCollection |
SynchronizedByteCollection.of(MutableByteCollection collection) |
This method will take a MutableByteCollection and wrap it directly in a SynchronizedByteCollection.
|
static SynchronizedByteCollection |
SynchronizedByteCollection.of(MutableByteCollection collection,
java.lang.Object lock) |
This method will take a MutableByteCollection and wrap it directly in a SynchronizedByteCollection.
|
static UnmodifiableByteCollection |
UnmodifiableByteCollection.of(MutableByteCollection collection) |
This method will take a MutableByteCollection and wrap it directly in a UnmodifiableByteCollection.
|
Modifier and Type | Method | Description |
---|---|---|
static <T,R extends MutableByteCollection> |
Collectors2.collectByte(ByteFunction<? super T> function,
java.util.function.Supplier<R> supplier) |
Returns a new MutableByteCollection with the results of applying the specified ByteFunction on each element
of the source.
|
Modifier and Type | Method | Description |
---|---|---|
<R extends MutableByteCollection> |
FastList.collectByte(ByteFunction<? super T> byteFunction,
R target) |
Modifier and Type | Class | Description |
---|---|---|
class |
ByteArrayList |
ByteArrayList is similar to
FastList , and is memory-optimized for byte primitives. |
class |
SynchronizedByteList |
A synchronized view of a
MutableByteList . |
class |
UnmodifiableByteList |
This file was automatically generated from template file unmodifiablePrimitiveList.stg.
|
Modifier and Type | Method | Description |
---|---|---|
<R extends MutableByteCollection> |
ByteArrayList.reject(BytePredicate predicate,
R target) |
|
<R extends MutableByteCollection> |
ByteArrayList.select(BytePredicate predicate,
R target) |
Modifier and Type | Method | Description |
---|---|---|
<R extends MutableByteCollection> |
UnmodifiableMutableMap.collectByte(ByteFunction<? super V> byteFunction,
R target) |
Modifier and Type | Class | Description |
---|---|---|
class |
AbstractMutableByteKeySet |
This file was automatically generated from template file abstractMutablePrimitiveKeySet.stg.
|
Modifier and Type | Method | Description |
---|---|---|
<R extends MutableByteCollection> |
ByteObjectHashMap.collectByte(ByteFunction<? super V> byteFunction,
R target) |
|
<R extends MutableByteCollection> |
CharObjectHashMap.collectByte(ByteFunction<? super V> byteFunction,
R target) |
|
<R extends MutableByteCollection> |
DoubleObjectHashMap.collectByte(ByteFunction<? super V> byteFunction,
R target) |
|
<R extends MutableByteCollection> |
FloatObjectHashMap.collectByte(ByteFunction<? super V> byteFunction,
R target) |
|
<R extends MutableByteCollection> |
IntObjectHashMap.collectByte(ByteFunction<? super V> byteFunction,
R target) |
|
<R extends MutableByteCollection> |
LongObjectHashMap.collectByte(ByteFunction<? super V> byteFunction,
R target) |
|
<R extends MutableByteCollection> |
ShortObjectHashMap.collectByte(ByteFunction<? super V> byteFunction,
R target) |
|
<R extends MutableByteCollection> |
SynchronizedByteObjectMap.collectByte(ByteFunction<? super V> byteFunction,
R target) |
|
<R extends MutableByteCollection> |
SynchronizedCharObjectMap.collectByte(ByteFunction<? super V> byteFunction,
R target) |
|
<R extends MutableByteCollection> |
SynchronizedDoubleObjectMap.collectByte(ByteFunction<? super V> byteFunction,
R target) |
|
<R extends MutableByteCollection> |
SynchronizedFloatObjectMap.collectByte(ByteFunction<? super V> byteFunction,
R target) |
|
<R extends MutableByteCollection> |
SynchronizedIntObjectMap.collectByte(ByteFunction<? super V> byteFunction,
R target) |
|
<R extends MutableByteCollection> |
SynchronizedLongObjectMap.collectByte(ByteFunction<? super V> byteFunction,
R target) |
|
<R extends MutableByteCollection> |
SynchronizedShortObjectMap.collectByte(ByteFunction<? super V> byteFunction,
R target) |
|
<R extends MutableByteCollection> |
UnmodifiableByteObjectMap.collectByte(ByteFunction<? super V> byteFunction,
R target) |
|
<R extends MutableByteCollection> |
UnmodifiableCharObjectMap.collectByte(ByteFunction<? super V> byteFunction,
R target) |
|
<R extends MutableByteCollection> |
UnmodifiableDoubleObjectMap.collectByte(ByteFunction<? super V> byteFunction,
R target) |
|
<R extends MutableByteCollection> |
UnmodifiableFloatObjectMap.collectByte(ByteFunction<? super V> byteFunction,
R target) |
|
<R extends MutableByteCollection> |
UnmodifiableIntObjectMap.collectByte(ByteFunction<? super V> byteFunction,
R target) |
|
<R extends MutableByteCollection> |
UnmodifiableLongObjectMap.collectByte(ByteFunction<? super V> byteFunction,
R target) |
|
<R extends MutableByteCollection> |
UnmodifiableShortObjectMap.collectByte(ByteFunction<? super V> byteFunction,
R target) |
Modifier and Type | Method | Description |
---|---|---|
MutableByteCollection |
ObjectByteHashMap.reject(BytePredicate predicate) |
|
MutableByteCollection |
ObjectByteHashMapWithHashingStrategy.reject(BytePredicate predicate) |
|
MutableByteCollection |
SynchronizedObjectByteMap.reject(BytePredicate predicate) |
|
MutableByteCollection |
UnmodifiableObjectByteMap.reject(BytePredicate predicate) |
|
MutableByteCollection |
ObjectByteHashMap.select(BytePredicate predicate) |
|
MutableByteCollection |
ObjectByteHashMapWithHashingStrategy.select(BytePredicate predicate) |
|
MutableByteCollection |
SynchronizedObjectByteMap.select(BytePredicate predicate) |
|
MutableByteCollection |
UnmodifiableObjectByteMap.select(BytePredicate predicate) |
|
MutableByteCollection |
ByteByteHashMap.values() |
|
MutableByteCollection |
CharByteHashMap.values() |
|
MutableByteCollection |
DoubleByteHashMap.values() |
|
MutableByteCollection |
FloatByteHashMap.values() |
|
MutableByteCollection |
IntByteHashMap.values() |
|
MutableByteCollection |
LongByteHashMap.values() |
|
MutableByteCollection |
ObjectByteHashMap.values() |
|
MutableByteCollection |
ObjectByteHashMapWithHashingStrategy.values() |
|
MutableByteCollection |
ShortByteHashMap.values() |
|
MutableByteCollection |
SynchronizedByteByteMap.values() |
|
MutableByteCollection |
SynchronizedCharByteMap.values() |
|
MutableByteCollection |
SynchronizedDoubleByteMap.values() |
|
MutableByteCollection |
SynchronizedFloatByteMap.values() |
|
MutableByteCollection |
SynchronizedIntByteMap.values() |
|
MutableByteCollection |
SynchronizedLongByteMap.values() |
|
MutableByteCollection |
SynchronizedObjectByteMap.values() |
|
MutableByteCollection |
SynchronizedShortByteMap.values() |
|
MutableByteCollection |
UnmodifiableByteByteMap.values() |
|
MutableByteCollection |
UnmodifiableCharByteMap.values() |
|
MutableByteCollection |
UnmodifiableDoubleByteMap.values() |
|
MutableByteCollection |
UnmodifiableFloatByteMap.values() |
|
MutableByteCollection |
UnmodifiableIntByteMap.values() |
|
MutableByteCollection |
UnmodifiableLongByteMap.values() |
|
MutableByteCollection |
UnmodifiableObjectByteMap.values() |
|
MutableByteCollection |
UnmodifiableShortByteMap.values() |
Modifier and Type | Method | Description |
---|---|---|
<R extends MutableByteCollection> |
UnmodifiableTreeMap.collectByte(ByteFunction<? super V> byteFunction,
R target) |
Modifier and Type | Class | Description |
---|---|---|
class |
ByteHashSet |
|
class |
SynchronizedByteSet |
A synchronized view of a
MutableByteSet . |
class |
UnmodifiableByteSet |
This file was automatically generated from template file unmodifiablePrimitiveSet.stg.
|
Modifier and Type | Method | Description |
---|---|---|
<R extends MutableByteCollection> |
ArrayStack.collectByte(ByteFunction<? super T> byteFunction,
R target) |
|
<R extends MutableByteCollection> |
SynchronizedStack.collectByte(ByteFunction<? super T> byteFunction,
R target) |
|
<R extends MutableByteCollection> |
UnmodifiableStack.collectByte(ByteFunction<? super T> byteFunction,
R target) |
Modifier and Type | Method | Description |
---|---|---|
static <T,R extends MutableByteCollection> |
ArrayIterate.collectByte(T[] objectArray,
ByteFunction<? super T> byteFunction,
R target) |
|
static <T,R extends MutableByteCollection> |
ArrayListIterate.collectByte(java.util.ArrayList<T> list,
ByteFunction<? super T> byteFunction,
R target) |
|
static <T,R extends MutableByteCollection> |
Iterate.collectByte(java.lang.Iterable<T> iterable,
ByteFunction<? super T> byteFunction,
R target) |
Same as
Iterate.collectByte(Iterable, ByteFunction) , except that the results are gathered into the specified target
collection. |
static <T,R extends MutableByteCollection> |
ListIterate.collectByte(java.util.List<T> list,
ByteFunction<? super T> byteFunction,
R target) |
|
static <K,V,R extends MutableByteCollection> |
MapIterate.collectByte(java.util.Map<K,V> map,
ByteFunction<? super V> byteFunction,
R target) |
Modifier and Type | Method | Description |
---|---|---|
static <T> MutableByteCollection |
Iterate.collectByte(java.lang.Iterable<T> iterable,
ByteFunction<? super T> byteFunction) |
Returns a new
byte collection with the results of applying the specified byteFunction for each element of the iterable. |
static <K,V> MutableByteCollection |
MapIterate.collectByte(java.util.Map<K,V> map,
ByteFunction<? super V> byteFunction) |
Modifier and Type | Method | Description |
---|---|---|
static <T,R extends MutableByteCollection> |
IterableIterate.collectByte(java.lang.Iterable<T> iterable,
ByteFunction<? super T> byteFunction,
R target) |
|
static <T,R extends MutableByteCollection> |
IteratorIterate.collectByte(java.util.Iterator<T> iterator,
ByteFunction<? super T> byteFunction,
R target) |
|
static <T,R extends MutableByteCollection> |
RandomAccessListIterate.collectByte(java.util.List<T> list,
ByteFunction<? super T> byteFunction,
R target) |
Modifier and Type | Method | Description |
---|---|---|
static <T> MutableByteCollection |
IterableIterate.collectByte(java.lang.Iterable<T> iterable,
ByteFunction<? super T> byteFunction) |
|
static <T> MutableByteCollection |
IteratorIterate.collectByte(java.util.Iterator<T> iterator,
ByteFunction<? super T> byteFunction) |
Modifier and Type | Method | Description |
---|---|---|
static <R extends MutableByteCollection> |
ByteIterableIterate.reject(ByteIterable iterable,
BytePredicate predicate,
R targetCollection) |
|
static <R extends MutableByteCollection> |
ByteIteratorIterate.reject(ByteIterator iterator,
BytePredicate predicate,
R targetCollection) |
|
static <R extends MutableByteCollection> |
ByteIterableIterate.select(ByteIterable iterable,
BytePredicate predicate,
R targetCollection) |
|
static <R extends MutableByteCollection> |
ByteIteratorIterate.select(ByteIterator iterator,
BytePredicate predicate,
R targetCollection) |
Copyright © 2004–2017. All rights reserved.