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 MutableCharCollection> |
BooleanIterable.collectChar(BooleanToCharFunction function,
R target) |
Returns the target
MutableCharCollection with the results of applying the specified function on each element
of the source collection. |
default <R extends MutableCharCollection> |
ByteIterable.collectChar(ByteToCharFunction function,
R target) |
Returns the target
MutableCharCollection with the results of applying the specified function on each element
of the source collection. |
default <R extends MutableCharCollection> |
CharIterable.collectChar(CharToCharFunction function,
R target) |
Returns the target
MutableCharCollection with the results of applying the specified function on each element
of the source collection. |
default <R extends MutableCharCollection> |
DoubleIterable.collectChar(DoubleToCharFunction function,
R target) |
Returns the target
MutableCharCollection with the results of applying the specified function on each element
of the source collection. |
default <R extends MutableCharCollection> |
FloatIterable.collectChar(FloatToCharFunction function,
R target) |
Returns the target
MutableCharCollection with the results of applying the specified function on each element
of the source collection. |
default <R extends MutableCharCollection> |
IntIterable.collectChar(IntToCharFunction function,
R target) |
Returns the target
MutableCharCollection with the results of applying the specified function on each element
of the source collection. |
default <R extends MutableCharCollection> |
LongIterable.collectChar(LongToCharFunction function,
R target) |
Returns the target
MutableCharCollection with the results of applying the specified function on each element
of the source collection. |
<R extends MutableCharCollection> |
RichIterable.collectChar(CharFunction<? super T> charFunction,
R target) |
Same as
RichIterable.collectChar(CharFunction) , except that the results are gathered into the specified target
collection. |
default <R extends MutableCharCollection> |
ShortIterable.collectChar(ShortToCharFunction function,
R target) |
Returns the target
MutableCharCollection with the results of applying the specified function on each element
of the source collection. |
default <R extends MutableCharCollection> |
CharIterable.reject(CharPredicate predicate,
R target) |
Same as
CharIterable.reject(CharPredicate) , only the results are added to the target MutableCharCollection. |
default <R extends MutableCharCollection> |
CharIterable.select(CharPredicate predicate,
R target) |
Same as
CharIterable.select(CharPredicate) , only the results are added to the target MutableCharCollection. |
Modifier and Type | Interface | Description |
---|---|---|
interface |
MutableCharBag |
This file was automatically generated from template file mutablePrimitiveBag.stg.
|
Modifier and Type | Method | Description |
---|---|---|
MutableCharCollection |
MutableCollection.collectChar(CharFunction<? super T> charFunction) |
Returns a new primitive
char iterable with the results of applying the specified function on each element
of the source collection. |
Modifier and Type | Method | Description |
---|---|---|
MutableCharCollection |
MutableCharCollection.asSynchronized() |
|
MutableCharCollection |
MutableCharCollection.asUnmodifiable() |
|
MutableCharCollection |
MutableCharCollection.reject(CharPredicate predicate) |
|
MutableCharCollection |
MutableCharCollection.select(CharPredicate predicate) |
|
MutableCharCollection |
MutableCharCollection.with(char element) |
|
MutableCharCollection |
MutableCharCollection.withAll(CharIterable elements) |
|
MutableCharCollection |
MutableCharCollection.without(char element) |
|
MutableCharCollection |
MutableCharCollection.withoutAll(CharIterable elements) |
Modifier and Type | Interface | Description |
---|---|---|
interface |
MutableCharList |
This file was automatically generated from template file mutablePrimitiveList.stg.
|
Modifier and Type | Method | Description |
---|---|---|
MutableCharCollection |
MutableObjectCharMap.reject(CharPredicate predicate) |
|
MutableCharCollection |
MutableObjectCharMap.select(CharPredicate predicate) |
|
MutableCharCollection |
CharValuesMap.values() |
|
MutableCharCollection |
ObjectCharMap.values() |
Modifier and Type | Interface | Description |
---|---|---|
interface |
MutableCharSet |
This file was automatically generated from template file mutablePrimitiveSet.stg.
|
Modifier and Type | Method | Description |
---|---|---|
<R extends MutableCharCollection> |
AbstractRichIterable.collectChar(CharFunction<? super T> charFunction,
R target) |
|
<R extends MutableCharCollection> |
SynchronizedRichIterable.collectChar(CharFunction<? super T> charFunction,
R target) |
|
<R extends MutableCharCollection> |
UnmodifiableRichIterable.collectChar(CharFunction<? super T> charFunction,
R target) |
Modifier and Type | Method | Description |
---|---|---|
<R extends MutableCharCollection> |
AbstractBag.collectChar(CharFunction<? super T> charFunction,
R target) |
Modifier and Type | Class | Description |
---|---|---|
class |
CharHashBag |
CharHashBag is similar to
HashBag , and is memory-optimized for char primitives. |
class |
SynchronizedCharBag |
A synchronized view of a
MutableCharBag . |
class |
UnmodifiableCharBag |
This file was automatically generated from template file unmodifiablePrimitiveBag.stg.
|
Modifier and Type | Method | Description |
---|---|---|
<R extends MutableCharCollection> |
AbstractBiMap.collectChar(CharFunction<? super V> charFunction,
R target) |
Modifier and Type | Method | Description |
---|---|---|
<R extends MutableCharCollection> |
UnmodifiableBiMap.collectChar(CharFunction<? super V> charFunction,
R target) |
Modifier and Type | Method | Description |
---|---|---|
MutableCharCollection |
CollectCharProcedure.getCharCollection() |
Constructor | Description |
---|---|
CollectCharProcedure(CharFunction<? super T> charFunction,
MutableCharCollection targetCollection) |
Modifier and Type | Method | Description |
---|---|---|
<R extends MutableCharCollection> |
AbstractSynchronizedRichIterable.collectChar(CharFunction<? super T> charFunction,
R target) |
Modifier and Type | Method | Description |
---|---|---|
<R extends MutableCharCollection> |
AbstractCollectionAdapter.collectChar(CharFunction<? super T> charFunction,
R target) |
|
<R extends MutableCharCollection> |
AbstractMultiReaderMutableCollection.collectChar(CharFunction<? super T> charFunction,
R target) |
|
<R extends MutableCharCollection> |
AbstractUnmodifiableMutableCollection.collectChar(CharFunction<? super T> charFunction,
R target) |
Modifier and Type | Method | Description |
---|---|---|
MutableCharCollection |
AbstractCollectionAdapter.collectChar(CharFunction<? super T> charFunction) |
|
MutableCharCollection |
AbstractUnmodifiableMutableCollection.collectChar(CharFunction<? super T> charFunction) |
|
MutableCharCollection |
SynchronizedMutableCollection.collectChar(CharFunction<? super T> charFunction) |
Modifier and Type | Class | Description |
---|---|---|
class |
AbstractSynchronizedCharCollection |
This file was automatically generated from template file abstractSynchronizedPrimitiveCollection.stg.
|
class |
AbstractUnmodifiableCharCollection |
This file was automatically generated from template file abstractUnmodifiablePrimitiveCollection.stg.
|
class |
SynchronizedCharCollection |
This file was automatically generated from template file synchronizedPrimitiveCollection.stg.
|
class |
UnmodifiableCharCollection |
This file was automatically generated from template file unmodifiablePrimitiveCollection.stg.
|
Modifier and Type | Method | Description |
---|---|---|
MutableCharCollection |
AbstractSynchronizedCharCollection.asSynchronized() |
|
MutableCharCollection |
AbstractUnmodifiableCharCollection.asSynchronized() |
|
MutableCharCollection |
AbstractSynchronizedCharCollection.asUnmodifiable() |
|
MutableCharCollection |
AbstractUnmodifiableCharCollection.asUnmodifiable() |
|
MutableCharCollection |
AbstractSynchronizedCharCollection.reject(CharPredicate predicate) |
|
MutableCharCollection |
AbstractUnmodifiableCharCollection.reject(CharPredicate predicate) |
|
MutableCharCollection |
AbstractSynchronizedCharCollection.select(CharPredicate predicate) |
|
MutableCharCollection |
AbstractUnmodifiableCharCollection.select(CharPredicate predicate) |
|
MutableCharCollection |
AbstractSynchronizedCharCollection.with(char element) |
|
MutableCharCollection |
AbstractUnmodifiableCharCollection.with(char element) |
|
MutableCharCollection |
AbstractSynchronizedCharCollection.withAll(CharIterable elements) |
|
MutableCharCollection |
AbstractUnmodifiableCharCollection.withAll(CharIterable elements) |
|
MutableCharCollection |
AbstractSynchronizedCharCollection.without(char element) |
|
MutableCharCollection |
AbstractUnmodifiableCharCollection.without(char element) |
|
MutableCharCollection |
AbstractSynchronizedCharCollection.withoutAll(CharIterable elements) |
|
MutableCharCollection |
AbstractUnmodifiableCharCollection.withoutAll(CharIterable elements) |
Modifier and Type | Method | Description |
---|---|---|
static SynchronizedCharCollection |
SynchronizedCharCollection.of(MutableCharCollection collection) |
This method will take a MutableCharCollection and wrap it directly in a SynchronizedCharCollection.
|
static SynchronizedCharCollection |
SynchronizedCharCollection.of(MutableCharCollection collection,
Object lock) |
This method will take a MutableCharCollection and wrap it directly in a SynchronizedCharCollection.
|
static UnmodifiableCharCollection |
UnmodifiableCharCollection.of(MutableCharCollection collection) |
This method will take a MutableCharCollection and wrap it directly in a UnmodifiableCharCollection.
|
Modifier and Type | Method | Description |
---|---|---|
static <T,R extends MutableCharCollection> |
Collectors2.collectChar(CharFunction<? super T> function,
Supplier<R> supplier) |
Returns a new MutableCharCollection with the results of applying the specified CharFunction on each element
of the source.
|
Modifier and Type | Method | Description |
---|---|---|
<R extends MutableCharCollection> |
FastList.collectChar(CharFunction<? super T> charFunction,
R target) |
Modifier and Type | Class | Description |
---|---|---|
class |
CharArrayList |
CharArrayList is similar to
FastList , and is memory-optimized for char primitives. |
class |
SynchronizedCharList |
A synchronized view of a
MutableCharList . |
class |
UnmodifiableCharList |
This file was automatically generated from template file unmodifiablePrimitiveList.stg.
|
Modifier and Type | Method | Description |
---|---|---|
<R extends MutableCharCollection> |
CharArrayList.reject(CharPredicate predicate,
R target) |
|
<R extends MutableCharCollection> |
CharArrayList.select(CharPredicate predicate,
R target) |
Modifier and Type | Method | Description |
---|---|---|
<R extends MutableCharCollection> |
UnmodifiableMutableMap.collectChar(CharFunction<? super V> charFunction,
R target) |
Modifier and Type | Class | Description |
---|---|---|
class |
AbstractMutableCharKeySet |
This file was automatically generated from template file abstractMutablePrimitiveKeySet.stg.
|
Modifier and Type | Method | Description |
---|---|---|
<R extends MutableCharCollection> |
ByteObjectHashMap.collectChar(CharFunction<? super V> charFunction,
R target) |
|
<R extends MutableCharCollection> |
CharObjectHashMap.collectChar(CharFunction<? super V> charFunction,
R target) |
|
<R extends MutableCharCollection> |
DoubleObjectHashMap.collectChar(CharFunction<? super V> charFunction,
R target) |
|
<R extends MutableCharCollection> |
FloatObjectHashMap.collectChar(CharFunction<? super V> charFunction,
R target) |
|
<R extends MutableCharCollection> |
IntObjectHashMap.collectChar(CharFunction<? super V> charFunction,
R target) |
|
<R extends MutableCharCollection> |
LongObjectHashMap.collectChar(CharFunction<? super V> charFunction,
R target) |
|
<R extends MutableCharCollection> |
ShortObjectHashMap.collectChar(CharFunction<? super V> charFunction,
R target) |
|
<R extends MutableCharCollection> |
SynchronizedByteObjectMap.collectChar(CharFunction<? super V> charFunction,
R target) |
|
<R extends MutableCharCollection> |
SynchronizedCharObjectMap.collectChar(CharFunction<? super V> charFunction,
R target) |
|
<R extends MutableCharCollection> |
SynchronizedDoubleObjectMap.collectChar(CharFunction<? super V> charFunction,
R target) |
|
<R extends MutableCharCollection> |
SynchronizedFloatObjectMap.collectChar(CharFunction<? super V> charFunction,
R target) |
|
<R extends MutableCharCollection> |
SynchronizedIntObjectMap.collectChar(CharFunction<? super V> charFunction,
R target) |
|
<R extends MutableCharCollection> |
SynchronizedLongObjectMap.collectChar(CharFunction<? super V> charFunction,
R target) |
|
<R extends MutableCharCollection> |
SynchronizedShortObjectMap.collectChar(CharFunction<? super V> charFunction,
R target) |
|
<R extends MutableCharCollection> |
UnmodifiableByteObjectMap.collectChar(CharFunction<? super V> charFunction,
R target) |
|
<R extends MutableCharCollection> |
UnmodifiableCharObjectMap.collectChar(CharFunction<? super V> charFunction,
R target) |
|
<R extends MutableCharCollection> |
UnmodifiableDoubleObjectMap.collectChar(CharFunction<? super V> charFunction,
R target) |
|
<R extends MutableCharCollection> |
UnmodifiableFloatObjectMap.collectChar(CharFunction<? super V> charFunction,
R target) |
|
<R extends MutableCharCollection> |
UnmodifiableIntObjectMap.collectChar(CharFunction<? super V> charFunction,
R target) |
|
<R extends MutableCharCollection> |
UnmodifiableLongObjectMap.collectChar(CharFunction<? super V> charFunction,
R target) |
|
<R extends MutableCharCollection> |
UnmodifiableShortObjectMap.collectChar(CharFunction<? super V> charFunction,
R target) |
Modifier and Type | Method | Description |
---|---|---|
MutableCharCollection |
ObjectCharHashMap.reject(CharPredicate predicate) |
|
MutableCharCollection |
ObjectCharHashMapWithHashingStrategy.reject(CharPredicate predicate) |
|
MutableCharCollection |
SynchronizedObjectCharMap.reject(CharPredicate predicate) |
|
MutableCharCollection |
UnmodifiableObjectCharMap.reject(CharPredicate predicate) |
|
MutableCharCollection |
ObjectCharHashMap.select(CharPredicate predicate) |
|
MutableCharCollection |
ObjectCharHashMapWithHashingStrategy.select(CharPredicate predicate) |
|
MutableCharCollection |
SynchronizedObjectCharMap.select(CharPredicate predicate) |
|
MutableCharCollection |
UnmodifiableObjectCharMap.select(CharPredicate predicate) |
|
MutableCharCollection |
ByteCharHashMap.values() |
|
MutableCharCollection |
CharCharHashMap.values() |
|
MutableCharCollection |
DoubleCharHashMap.values() |
|
MutableCharCollection |
FloatCharHashMap.values() |
|
MutableCharCollection |
IntCharHashMap.values() |
|
MutableCharCollection |
LongCharHashMap.values() |
|
MutableCharCollection |
ObjectCharHashMap.values() |
|
MutableCharCollection |
ObjectCharHashMapWithHashingStrategy.values() |
|
MutableCharCollection |
ShortCharHashMap.values() |
|
MutableCharCollection |
SynchronizedByteCharMap.values() |
|
MutableCharCollection |
SynchronizedCharCharMap.values() |
|
MutableCharCollection |
SynchronizedDoubleCharMap.values() |
|
MutableCharCollection |
SynchronizedFloatCharMap.values() |
|
MutableCharCollection |
SynchronizedIntCharMap.values() |
|
MutableCharCollection |
SynchronizedLongCharMap.values() |
|
MutableCharCollection |
SynchronizedObjectCharMap.values() |
|
MutableCharCollection |
SynchronizedShortCharMap.values() |
|
MutableCharCollection |
UnmodifiableByteCharMap.values() |
|
MutableCharCollection |
UnmodifiableCharCharMap.values() |
|
MutableCharCollection |
UnmodifiableDoubleCharMap.values() |
|
MutableCharCollection |
UnmodifiableFloatCharMap.values() |
|
MutableCharCollection |
UnmodifiableIntCharMap.values() |
|
MutableCharCollection |
UnmodifiableLongCharMap.values() |
|
MutableCharCollection |
UnmodifiableObjectCharMap.values() |
|
MutableCharCollection |
UnmodifiableShortCharMap.values() |
Modifier and Type | Method | Description |
---|---|---|
<R extends MutableCharCollection> |
UnmodifiableTreeMap.collectChar(CharFunction<? super V> charFunction,
R target) |
Modifier and Type | Class | Description |
---|---|---|
class |
CharHashSet |
This file was automatically generated from template file primitiveHashSet.stg.
|
class |
SynchronizedCharSet |
A synchronized view of a
MutableCharSet . |
class |
UnmodifiableCharSet |
This file was automatically generated from template file unmodifiablePrimitiveSet.stg.
|
Modifier and Type | Method | Description |
---|---|---|
<R extends MutableCharCollection> |
CharHashSet.reject(CharPredicate predicate,
R target) |
|
<R extends MutableCharCollection> |
CharHashSet.select(CharPredicate predicate,
R target) |
Modifier and Type | Method | Description |
---|---|---|
<R extends MutableCharCollection> |
ArrayStack.collectChar(CharFunction<? super T> charFunction,
R target) |
|
<R extends MutableCharCollection> |
SynchronizedStack.collectChar(CharFunction<? super T> charFunction,
R target) |
|
<R extends MutableCharCollection> |
UnmodifiableStack.collectChar(CharFunction<? super T> charFunction,
R target) |
Modifier and Type | Method | Description |
---|---|---|
static <T,R extends MutableCharCollection> |
ArrayIterate.collectChar(T[] objectArray,
CharFunction<? super T> charFunction,
R target) |
|
static <T,R extends MutableCharCollection> |
ArrayListIterate.collectChar(ArrayList<T> list,
CharFunction<? super T> charFunction,
R target) |
|
static <T,R extends MutableCharCollection> |
Iterate.collectChar(Iterable<T> iterable,
CharFunction<? super T> charFunction,
R target) |
Same as
Iterate.collectChar(Iterable, CharFunction) , except that the results are gathered into the specified target
collection. |
static <T,R extends MutableCharCollection> |
ListIterate.collectChar(List<T> list,
CharFunction<? super T> charFunction,
R target) |
|
static <K,V,R extends MutableCharCollection> |
MapIterate.collectChar(Map<K,V> map,
CharFunction<? super V> charFunction,
R target) |
Modifier and Type | Method | Description |
---|---|---|
static <T> MutableCharCollection |
Iterate.collectChar(Iterable<T> iterable,
CharFunction<? super T> charFunction) |
Returns a new
char collection with the results of applying the specified charFunction for each element of the iterable. |
static <K,V> MutableCharCollection |
MapIterate.collectChar(Map<K,V> map,
CharFunction<? super V> charFunction) |
Modifier and Type | Method | Description |
---|---|---|
static <T,R extends MutableCharCollection> |
IterableIterate.collectChar(Iterable<T> iterable,
CharFunction<? super T> charFunction,
R target) |
|
static <T,R extends MutableCharCollection> |
IteratorIterate.collectChar(Iterator<T> iterator,
CharFunction<? super T> charFunction,
R target) |
|
static <T,R extends MutableCharCollection> |
RandomAccessListIterate.collectChar(List<T> list,
CharFunction<? super T> charFunction,
R target) |
Modifier and Type | Method | Description |
---|---|---|
static <T> MutableCharCollection |
IterableIterate.collectChar(Iterable<T> iterable,
CharFunction<? super T> charFunction) |
|
static <T> MutableCharCollection |
IteratorIterate.collectChar(Iterator<T> iterator,
CharFunction<? super T> charFunction) |
Modifier and Type | Method | Description |
---|---|---|
static <R extends MutableCharCollection> |
CharIterableIterate.reject(CharIterable iterable,
CharPredicate predicate,
R targetCollection) |
|
static <R extends MutableCharCollection> |
CharIteratorIterate.reject(CharIterator iterator,
CharPredicate predicate,
R targetCollection) |
|
static <R extends MutableCharCollection> |
CharIterableIterate.select(CharIterable iterable,
CharPredicate predicate,
R targetCollection) |
|
static <R extends MutableCharCollection> |
CharIteratorIterate.select(CharIterator iterator,
CharPredicate predicate,
R targetCollection) |
Copyright © 2004–2017. All rights reserved.