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.
|
org.eclipse.collections.impl |
This package contains implementations for Eclipse Collections API.
|
org.eclipse.collections.impl.bag | |
org.eclipse.collections.impl.bag.immutable |
This package contains implementations of the
ImmutableBag interface. |
org.eclipse.collections.impl.bag.mutable |
This package contains implementations of the
MutableBag interface. |
org.eclipse.collections.impl.bag.sorted.mutable |
This package contains implementations of
MutableSortedBag . |
org.eclipse.collections.impl.bimap | |
org.eclipse.collections.impl.bimap.immutable | |
org.eclipse.collections.impl.bimap.mutable |
This package contains implementations of the
MutableBiMap interface. |
org.eclipse.collections.impl.block.comparator.primitive |
This package contains implementations of the
SerializableComparator interface to compare primitive double, int and long. |
org.eclipse.collections.impl.block.factory |
This package contains factory implementations for
Function , Predicate , SerializableComparator and Procedure . |
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.collector | |
org.eclipse.collections.impl.lazy |
This package contains implementations of the
LazyIterable interface. |
org.eclipse.collections.impl.lazy.primitive |
This package contains implementations of the lazy primitive iterator interfaces.
|
org.eclipse.collections.impl.list.mutable |
This package contains implementations of the
MutableList interface. |
org.eclipse.collections.impl.map.immutable |
This package contains implementations of the
ImmutableMap interface. |
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.immutable |
This package contains implementations of the
MutableSortedMap interface. |
org.eclipse.collections.impl.map.sorted.mutable |
This package contains implementations of the
MutableSortedMap interface. |
org.eclipse.collections.impl.set | |
org.eclipse.collections.impl.set.immutable |
This package package contains the implementations of
ImmutableSet . |
org.eclipse.collections.impl.set.mutable |
This package package contains implementations of
MutableSet . |
org.eclipse.collections.impl.set.sorted.mutable |
This package contains implementations of
MutableSortedSet . |
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.
|
Modifier and Type | Method | Description |
---|---|---|
LazyBooleanIterable |
LazyIterable.collectBoolean(BooleanFunction<? super T> booleanFunction) |
Returns a lazy BooleanIterable which will transform the underlying iterable data to boolean values based on the booleanFunction.
|
BooleanIterable |
RichIterable.collectBoolean(BooleanFunction<? super T> booleanFunction) |
Returns a new primitive
boolean iterable with the results of applying the specified function on each element
of the source collection. |
<R extends MutableBooleanCollection> |
RichIterable.collectBoolean(BooleanFunction<? super T> booleanFunction,
R target) |
Same as
RichIterable.collectBoolean(BooleanFunction) , except that the results are gathered into the specified target
collection. |
Modifier and Type | Method | Description |
---|---|---|
ImmutableBooleanBag |
ImmutableBag.collectBoolean(BooleanFunction<? super T> booleanFunction) |
|
MutableBooleanBag |
MutableBag.collectBoolean(BooleanFunction<? super T> booleanFunction) |
|
BooleanBag |
UnsortedBag.collectBoolean(BooleanFunction<? super T> booleanFunction) |
Modifier and Type | Method | Description |
---|---|---|
ImmutableBooleanList |
ImmutableSortedBag.collectBoolean(BooleanFunction<? super T> booleanFunction) |
|
MutableBooleanList |
MutableSortedBag.collectBoolean(BooleanFunction<? super T> booleanFunction) |
|
BooleanList |
SortedBag.collectBoolean(BooleanFunction<? super T> booleanFunction) |
Modifier and Type | Method | Description |
---|---|---|
ImmutableBooleanCollection |
ImmutableCollection.collectBoolean(BooleanFunction<? super T> booleanFunction) |
|
MutableBooleanCollection |
MutableCollection.collectBoolean(BooleanFunction<? super T> booleanFunction) |
Returns a new primitive
boolean iterable with the results of applying the specified function on each element
of the source collection. |
Modifier and Type | Method | Description |
---|---|---|
ImmutableBooleanList |
ImmutableList.collectBoolean(BooleanFunction<? super T> booleanFunction) |
|
BooleanList |
ListIterable.collectBoolean(BooleanFunction<? super T> booleanFunction) |
|
MutableBooleanList |
MutableList.collectBoolean(BooleanFunction<? super T> booleanFunction) |
|
MutableList<T> |
MutableList.sortThisByBoolean(BooleanFunction<? super T> function) |
Modifier and Type | Method | Description |
---|---|---|
ImmutableBooleanBag |
ImmutableMap.collectBoolean(BooleanFunction<? super V> booleanFunction) |
|
ImmutableBooleanList |
ImmutableOrderedMap.collectBoolean(BooleanFunction<? super V> booleanFunction) |
|
MutableBooleanBag |
MutableMap.collectBoolean(BooleanFunction<? super V> booleanFunction) |
|
MutableBooleanList |
MutableOrderedMap.collectBoolean(BooleanFunction<? super V> booleanFunction) |
|
BooleanList |
OrderedMap.collectBoolean(BooleanFunction<? super V> booleanFunction) |
|
BooleanBag |
UnsortedMapIterable.collectBoolean(BooleanFunction<? super V> booleanFunction) |
Modifier and Type | Method | Description |
---|---|---|
ImmutableBooleanBag |
ImmutablePrimitiveObjectMap.collectBoolean(BooleanFunction<? super V> booleanFunction) |
|
MutableBooleanBag |
MutablePrimitiveObjectMap.collectBoolean(BooleanFunction<? super V> booleanFunction) |
|
BooleanBag |
PrimitiveObjectMap.collectBoolean(BooleanFunction<? super V> booleanFunction) |
|
<P> boolean |
MutableByteBooleanMap.getIfAbsentPutWith(byte key,
BooleanFunction<? super P> function,
P parameter) |
|
<P> boolean |
MutableCharBooleanMap.getIfAbsentPutWith(char key,
BooleanFunction<? super P> function,
P parameter) |
|
<P> boolean |
MutableDoubleBooleanMap.getIfAbsentPutWith(double key,
BooleanFunction<? super P> function,
P parameter) |
|
<P> boolean |
MutableFloatBooleanMap.getIfAbsentPutWith(float key,
BooleanFunction<? super P> function,
P parameter) |
|
<P> boolean |
MutableIntBooleanMap.getIfAbsentPutWith(int key,
BooleanFunction<? super P> function,
P parameter) |
|
<P> boolean |
MutableLongBooleanMap.getIfAbsentPutWith(long key,
BooleanFunction<? super P> function,
P parameter) |
|
<P> boolean |
MutableObjectBooleanMap.getIfAbsentPutWith(K key,
BooleanFunction<? super P> function,
P parameter) |
|
<P> boolean |
MutableShortBooleanMap.getIfAbsentPutWith(short key,
BooleanFunction<? super P> function,
P parameter) |
|
boolean |
MutableObjectBooleanMap.getIfAbsentPutWithKey(K key,
BooleanFunction<? super K> function) |
Modifier and Type | Method | Description |
---|---|---|
ImmutableBooleanList |
ImmutableSortedMap.collectBoolean(BooleanFunction<? super V> booleanFunction) |
|
MutableBooleanList |
MutableSortedMap.collectBoolean(BooleanFunction<? super V> booleanFunction) |
|
BooleanList |
SortedMapIterable.collectBoolean(BooleanFunction<? super V> booleanFunction) |
Modifier and Type | Method | Description |
---|---|---|
OrderedBooleanIterable |
OrderedIterable.collectBoolean(BooleanFunction<? super T> booleanFunction) |
|
ReversibleBooleanIterable |
ReversibleIterable.collectBoolean(BooleanFunction<? super T> booleanFunction) |
Modifier and Type | Method | Description |
---|---|---|
ImmutableBooleanSet |
ImmutableSet.collectBoolean(BooleanFunction<? super T> booleanFunction) |
|
MutableBooleanSet |
MutableSet.collectBoolean(BooleanFunction<? super T> booleanFunction) |
|
BooleanSet |
UnsortedSetIterable.collectBoolean(BooleanFunction<? super T> booleanFunction) |
Modifier and Type | Method | Description |
---|---|---|
ImmutableBooleanList |
ImmutableSortedSet.collectBoolean(BooleanFunction<? super T> booleanFunction) |
|
MutableBooleanList |
MutableSortedSet.collectBoolean(BooleanFunction<? super T> booleanFunction) |
|
BooleanList |
SortedSetIterable.collectBoolean(BooleanFunction<? super T> booleanFunction) |
Modifier and Type | Method | Description |
---|---|---|
ImmutableBooleanStack |
ImmutableStack.collectBoolean(BooleanFunction<? super T> booleanFunction) |
|
MutableBooleanStack |
MutableStack.collectBoolean(BooleanFunction<? super T> booleanFunction) |
|
BooleanStack |
StackIterable.collectBoolean(BooleanFunction<? super T> booleanFunction) |
Modifier and Type | Method | Description |
---|---|---|
<R extends MutableBooleanCollection> |
AbstractRichIterable.collectBoolean(BooleanFunction<? super T> booleanFunction,
R target) |
|
BooleanIterable |
UnmodifiableRichIterable.collectBoolean(BooleanFunction<? super T> booleanFunction) |
|
<R extends MutableBooleanCollection> |
UnmodifiableRichIterable.collectBoolean(BooleanFunction<? super T> booleanFunction,
R target) |
Modifier and Type | Method | Description |
---|---|---|
<R extends MutableBooleanCollection> |
AbstractBag.collectBoolean(BooleanFunction<? super T> booleanFunction,
R target) |
Modifier and Type | Method | Description |
---|---|---|
ImmutableBooleanBag |
AbstractImmutableBag.collectBoolean(BooleanFunction<? super T> booleanFunction) |
Modifier and Type | Method | Description |
---|---|---|
MutableBooleanBag |
AbstractMutableBag.collectBoolean(BooleanFunction<? super T> booleanFunction) |
|
MutableBooleanBag |
MultiReaderHashBag.collectBoolean(BooleanFunction<? super T> booleanFunction) |
|
MutableBooleanBag |
SynchronizedBag.collectBoolean(BooleanFunction<? super T> booleanFunction) |
|
MutableBooleanBag |
UnmodifiableBag.collectBoolean(BooleanFunction<? super T> booleanFunction) |
Modifier and Type | Method | Description |
---|---|---|
MutableBooleanList |
AbstractMutableSortedBag.collectBoolean(BooleanFunction<? super T> booleanFunction) |
|
MutableBooleanList |
SynchronizedSortedBag.collectBoolean(BooleanFunction<? super T> booleanFunction) |
|
MutableBooleanList |
UnmodifiableSortedBag.collectBoolean(BooleanFunction<? super T> booleanFunction) |
Modifier and Type | Method | Description |
---|---|---|
<R extends MutableBooleanCollection> |
AbstractBiMap.collectBoolean(BooleanFunction<? super V> booleanFunction,
R target) |
Modifier and Type | Method | Description |
---|---|---|
ImmutableBooleanBag |
AbstractImmutableBiMap.collectBoolean(BooleanFunction<? super V> booleanFunction) |
Modifier and Type | Method | Description |
---|---|---|
BooleanIterable |
UnmodifiableBiMap.collectBoolean(BooleanFunction<? super V> booleanFunction) |
|
<R extends MutableBooleanCollection> |
UnmodifiableBiMap.collectBoolean(BooleanFunction<? super V> booleanFunction,
R target) |
Constructor | Description |
---|---|
BooleanFunctionComparator(BooleanFunction<T> function) |
Modifier and Type | Class | Description |
---|---|---|
static class |
Functions.BooleanFunctionChain<T1,T2> |
Modifier and Type | Method | Description |
---|---|---|
static BooleanFunction<java.lang.Integer> |
PrimitiveFunctions.integerIsPositive() |
|
static BooleanFunction<java.lang.String> |
StringFunctions.toPrimitiveBoolean() |
Modifier and Type | Method | Description |
---|---|---|
static <T> SerializableComparator<T> |
Comparators.byBooleanFunction(BooleanFunction<T> function) |
|
static <T1,T2> Functions.BooleanFunctionChain<T1,T2> |
Functions.chainBoolean(Function<T1,T2> function1,
BooleanFunction<? super T2> function2) |
|
Functions.BooleanFunctionChain<T1,T3> |
Functions.FunctionChain.chainBoolean(BooleanFunction<? super T3> function) |
|
static <T> HashingStrategy<T> |
HashingStrategies.fromBooleanFunction(BooleanFunction<? super T> function) |
|
static <T> SerializableComparator<T> |
Functions.toBooleanComparator(BooleanFunction<T> function) |
Constructor | Description |
---|---|
CollectBooleanProcedure(BooleanFunction<? super T> booleanFunction,
MutableBooleanCollection targetCollection) |
Modifier and Type | Method | Description |
---|---|---|
BooleanIterable |
AbstractSynchronizedRichIterable.collectBoolean(BooleanFunction<? super T> booleanFunction) |
|
<R extends MutableBooleanCollection> |
AbstractSynchronizedRichIterable.collectBoolean(BooleanFunction<? super T> booleanFunction,
R target) |
Modifier and Type | Method | Description |
---|---|---|
MutableBooleanCollection |
AbstractCollectionAdapter.collectBoolean(BooleanFunction<? super T> booleanFunction) |
|
<R extends MutableBooleanCollection> |
AbstractCollectionAdapter.collectBoolean(BooleanFunction<? super T> booleanFunction,
R target) |
|
<R extends MutableBooleanCollection> |
AbstractMultiReaderMutableCollection.collectBoolean(BooleanFunction<? super T> booleanFunction,
R target) |
|
MutableBooleanCollection |
AbstractSynchronizedMutableCollection.collectBoolean(BooleanFunction<? super T> booleanFunction) |
|
MutableBooleanCollection |
AbstractUnmodifiableMutableCollection.collectBoolean(BooleanFunction<? super T> booleanFunction) |
|
<R extends MutableBooleanCollection> |
AbstractUnmodifiableMutableCollection.collectBoolean(BooleanFunction<? super T> booleanFunction,
R target) |
Modifier and Type | Method | Description |
---|---|---|
static <T,R extends MutableBooleanCollection> |
Collectors2.collectBoolean(BooleanFunction<? super T> function,
java.util.function.Supplier<R> supplier) |
Returns a new MutableBooleanCollection with the results of applying the specified BooleanFunction on each element
of the source.
|
Modifier and Type | Method | Description |
---|---|---|
LazyBooleanIterable |
AbstractLazyIterable.collectBoolean(BooleanFunction<? super T> booleanFunction) |
Constructor | Description |
---|---|
CollectBooleanIterable(LazyIterable<T> adapted,
BooleanFunction<? super T> function) |
Modifier and Type | Method | Description |
---|---|---|
MutableBooleanList |
AbstractListAdapter.collectBoolean(BooleanFunction<? super T> booleanFunction) |
|
MutableBooleanList |
AbstractMutableList.collectBoolean(BooleanFunction<? super T> booleanFunction) |
|
MutableBooleanList |
ArrayListAdapter.collectBoolean(BooleanFunction<? super T> booleanFunction) |
|
MutableBooleanList |
FastList.collectBoolean(BooleanFunction<? super T> booleanFunction) |
|
<R extends MutableBooleanCollection> |
FastList.collectBoolean(BooleanFunction<? super T> booleanFunction,
R target) |
|
MutableBooleanList |
MultiReaderFastList.collectBoolean(BooleanFunction<? super T> booleanFunction) |
|
MutableBooleanList |
RandomAccessListAdapter.collectBoolean(BooleanFunction<? super T> booleanFunction) |
|
MutableBooleanList |
SynchronizedMutableList.collectBoolean(BooleanFunction<? super T> booleanFunction) |
|
MutableBooleanList |
UnmodifiableMutableList.collectBoolean(BooleanFunction<? super T> booleanFunction) |
|
MutableList<T> |
AbstractListAdapter.sortThisByBoolean(BooleanFunction<? super T> function) |
|
MutableList<T> |
AbstractMutableList.sortThisByBoolean(BooleanFunction<? super T> function) |
|
MutableList<T> |
MultiReaderFastList.sortThisByBoolean(BooleanFunction<? super T> function) |
|
MutableList<T> |
SynchronizedMutableList.sortThisByBoolean(BooleanFunction<? super T> function) |
|
MutableList<T> |
UnmodifiableMutableList.sortThisByBoolean(BooleanFunction<? super T> function) |
Modifier and Type | Method | Description |
---|---|---|
ImmutableBooleanBag |
AbstractImmutableMap.collectBoolean(BooleanFunction<? super V> booleanFunction) |
Modifier and Type | Method | Description |
---|---|---|
MutableBooleanBag |
AbstractMutableMap.collectBoolean(BooleanFunction<? super V> booleanFunction) |
|
MutableBooleanBag |
SynchronizedMutableMap.collectBoolean(BooleanFunction<? super V> booleanFunction) |
|
MutableBooleanBag |
UnmodifiableMutableMap.collectBoolean(BooleanFunction<? super V> booleanFunction) |
|
<R extends MutableBooleanCollection> |
UnmodifiableMutableMap.collectBoolean(BooleanFunction<? super V> booleanFunction,
R target) |
Modifier and Type | Method | Description |
---|---|---|
MutableBooleanBag |
ByteObjectHashMap.collectBoolean(BooleanFunction<? super V> booleanFunction) |
|
<R extends MutableBooleanCollection> |
ByteObjectHashMap.collectBoolean(BooleanFunction<? super V> booleanFunction,
R target) |
|
MutableBooleanBag |
CharObjectHashMap.collectBoolean(BooleanFunction<? super V> booleanFunction) |
|
<R extends MutableBooleanCollection> |
CharObjectHashMap.collectBoolean(BooleanFunction<? super V> booleanFunction,
R target) |
|
MutableBooleanBag |
DoubleObjectHashMap.collectBoolean(BooleanFunction<? super V> booleanFunction) |
|
<R extends MutableBooleanCollection> |
DoubleObjectHashMap.collectBoolean(BooleanFunction<? super V> booleanFunction,
R target) |
|
MutableBooleanBag |
FloatObjectHashMap.collectBoolean(BooleanFunction<? super V> booleanFunction) |
|
<R extends MutableBooleanCollection> |
FloatObjectHashMap.collectBoolean(BooleanFunction<? super V> booleanFunction,
R target) |
|
MutableBooleanBag |
IntObjectHashMap.collectBoolean(BooleanFunction<? super V> booleanFunction) |
|
<R extends MutableBooleanCollection> |
IntObjectHashMap.collectBoolean(BooleanFunction<? super V> booleanFunction,
R target) |
|
MutableBooleanBag |
LongObjectHashMap.collectBoolean(BooleanFunction<? super V> booleanFunction) |
|
<R extends MutableBooleanCollection> |
LongObjectHashMap.collectBoolean(BooleanFunction<? super V> booleanFunction,
R target) |
|
MutableBooleanBag |
ShortObjectHashMap.collectBoolean(BooleanFunction<? super V> booleanFunction) |
|
<R extends MutableBooleanCollection> |
ShortObjectHashMap.collectBoolean(BooleanFunction<? super V> booleanFunction,
R target) |
|
MutableBooleanBag |
SynchronizedByteObjectMap.collectBoolean(BooleanFunction<? super V> booleanFunction) |
|
<R extends MutableBooleanCollection> |
SynchronizedByteObjectMap.collectBoolean(BooleanFunction<? super V> booleanFunction,
R target) |
|
MutableBooleanBag |
SynchronizedCharObjectMap.collectBoolean(BooleanFunction<? super V> booleanFunction) |
|
<R extends MutableBooleanCollection> |
SynchronizedCharObjectMap.collectBoolean(BooleanFunction<? super V> booleanFunction,
R target) |
|
MutableBooleanBag |
SynchronizedDoubleObjectMap.collectBoolean(BooleanFunction<? super V> booleanFunction) |
|
<R extends MutableBooleanCollection> |
SynchronizedDoubleObjectMap.collectBoolean(BooleanFunction<? super V> booleanFunction,
R target) |
|
MutableBooleanBag |
SynchronizedFloatObjectMap.collectBoolean(BooleanFunction<? super V> booleanFunction) |
|
<R extends MutableBooleanCollection> |
SynchronizedFloatObjectMap.collectBoolean(BooleanFunction<? super V> booleanFunction,
R target) |
|
MutableBooleanBag |
SynchronizedIntObjectMap.collectBoolean(BooleanFunction<? super V> booleanFunction) |
|
<R extends MutableBooleanCollection> |
SynchronizedIntObjectMap.collectBoolean(BooleanFunction<? super V> booleanFunction,
R target) |
|
MutableBooleanBag |
SynchronizedLongObjectMap.collectBoolean(BooleanFunction<? super V> booleanFunction) |
|
<R extends MutableBooleanCollection> |
SynchronizedLongObjectMap.collectBoolean(BooleanFunction<? super V> booleanFunction,
R target) |
|
MutableBooleanBag |
SynchronizedShortObjectMap.collectBoolean(BooleanFunction<? super V> booleanFunction) |
|
<R extends MutableBooleanCollection> |
SynchronizedShortObjectMap.collectBoolean(BooleanFunction<? super V> booleanFunction,
R target) |
|
MutableBooleanBag |
UnmodifiableByteObjectMap.collectBoolean(BooleanFunction<? super V> booleanFunction) |
|
<R extends MutableBooleanCollection> |
UnmodifiableByteObjectMap.collectBoolean(BooleanFunction<? super V> booleanFunction,
R target) |
|
MutableBooleanBag |
UnmodifiableCharObjectMap.collectBoolean(BooleanFunction<? super V> booleanFunction) |
|
<R extends MutableBooleanCollection> |
UnmodifiableCharObjectMap.collectBoolean(BooleanFunction<? super V> booleanFunction,
R target) |
|
MutableBooleanBag |
UnmodifiableDoubleObjectMap.collectBoolean(BooleanFunction<? super V> booleanFunction) |
|
<R extends MutableBooleanCollection> |
UnmodifiableDoubleObjectMap.collectBoolean(BooleanFunction<? super V> booleanFunction,
R target) |
|
MutableBooleanBag |
UnmodifiableFloatObjectMap.collectBoolean(BooleanFunction<? super V> booleanFunction) |
|
<R extends MutableBooleanCollection> |
UnmodifiableFloatObjectMap.collectBoolean(BooleanFunction<? super V> booleanFunction,
R target) |
|
MutableBooleanBag |
UnmodifiableIntObjectMap.collectBoolean(BooleanFunction<? super V> booleanFunction) |
|
<R extends MutableBooleanCollection> |
UnmodifiableIntObjectMap.collectBoolean(BooleanFunction<? super V> booleanFunction,
R target) |
|
MutableBooleanBag |
UnmodifiableLongObjectMap.collectBoolean(BooleanFunction<? super V> booleanFunction) |
|
<R extends MutableBooleanCollection> |
UnmodifiableLongObjectMap.collectBoolean(BooleanFunction<? super V> booleanFunction,
R target) |
|
MutableBooleanBag |
UnmodifiableShortObjectMap.collectBoolean(BooleanFunction<? super V> booleanFunction) |
|
<R extends MutableBooleanCollection> |
UnmodifiableShortObjectMap.collectBoolean(BooleanFunction<? super V> booleanFunction,
R target) |
|
<P> boolean |
ByteBooleanHashMap.getIfAbsentPutWith(byte key,
BooleanFunction<? super P> function,
P parameter) |
|
<P> boolean |
CharBooleanHashMap.getIfAbsentPutWith(char key,
BooleanFunction<? super P> function,
P parameter) |
|
<P> boolean |
DoubleBooleanHashMap.getIfAbsentPutWith(double key,
BooleanFunction<? super P> function,
P parameter) |
|
<P> boolean |
FloatBooleanHashMap.getIfAbsentPutWith(float key,
BooleanFunction<? super P> function,
P parameter) |
|
<P> boolean |
IntBooleanHashMap.getIfAbsentPutWith(int key,
BooleanFunction<? super P> function,
P parameter) |
|
<P> boolean |
LongBooleanHashMap.getIfAbsentPutWith(long key,
BooleanFunction<? super P> function,
P parameter) |
|
<P> boolean |
ObjectBooleanHashMap.getIfAbsentPutWith(K key,
BooleanFunction<? super P> function,
P parameter) |
|
<P> boolean |
ObjectBooleanHashMapWithHashingStrategy.getIfAbsentPutWith(K key,
BooleanFunction<? super P> function,
P parameter) |
|
<P> boolean |
ShortBooleanHashMap.getIfAbsentPutWith(short key,
BooleanFunction<? super P> function,
P parameter) |
|
<P> boolean |
SynchronizedByteBooleanMap.getIfAbsentPutWith(byte key,
BooleanFunction<? super P> function,
P parameter) |
|
<P> boolean |
SynchronizedCharBooleanMap.getIfAbsentPutWith(char key,
BooleanFunction<? super P> function,
P parameter) |
|
<P> boolean |
SynchronizedDoubleBooleanMap.getIfAbsentPutWith(double key,
BooleanFunction<? super P> function,
P parameter) |
|
<P> boolean |
SynchronizedFloatBooleanMap.getIfAbsentPutWith(float key,
BooleanFunction<? super P> function,
P parameter) |
|
<P> boolean |
SynchronizedIntBooleanMap.getIfAbsentPutWith(int key,
BooleanFunction<? super P> function,
P parameter) |
|
<P> boolean |
SynchronizedLongBooleanMap.getIfAbsentPutWith(long key,
BooleanFunction<? super P> function,
P parameter) |
|
<P> boolean |
SynchronizedObjectBooleanMap.getIfAbsentPutWith(K key,
BooleanFunction<? super P> function,
P parameter) |
|
<P> boolean |
SynchronizedShortBooleanMap.getIfAbsentPutWith(short key,
BooleanFunction<? super P> function,
P parameter) |
|
<P> boolean |
UnmodifiableByteBooleanMap.getIfAbsentPutWith(byte key,
BooleanFunction<? super P> function,
P parameter) |
|
<P> boolean |
UnmodifiableCharBooleanMap.getIfAbsentPutWith(char key,
BooleanFunction<? super P> function,
P parameter) |
|
<P> boolean |
UnmodifiableDoubleBooleanMap.getIfAbsentPutWith(double key,
BooleanFunction<? super P> function,
P parameter) |
|
<P> boolean |
UnmodifiableFloatBooleanMap.getIfAbsentPutWith(float key,
BooleanFunction<? super P> function,
P parameter) |
|
<P> boolean |
UnmodifiableIntBooleanMap.getIfAbsentPutWith(int key,
BooleanFunction<? super P> function,
P parameter) |
|
<P> boolean |
UnmodifiableLongBooleanMap.getIfAbsentPutWith(long key,
BooleanFunction<? super P> function,
P parameter) |
|
<P> boolean |
UnmodifiableObjectBooleanMap.getIfAbsentPutWith(K key,
BooleanFunction<? super P> function,
P parameter) |
|
<P> boolean |
UnmodifiableShortBooleanMap.getIfAbsentPutWith(short key,
BooleanFunction<? super P> function,
P parameter) |
|
boolean |
ObjectBooleanHashMap.getIfAbsentPutWithKey(K key,
BooleanFunction<? super K> function) |
|
boolean |
ObjectBooleanHashMapWithHashingStrategy.getIfAbsentPutWithKey(K key,
BooleanFunction<? super K> function) |
|
boolean |
SynchronizedObjectBooleanMap.getIfAbsentPutWithKey(K key,
BooleanFunction<? super K> function) |
|
boolean |
UnmodifiableObjectBooleanMap.getIfAbsentPutWithKey(K key,
BooleanFunction<? super K> function) |
Modifier and Type | Method | Description |
---|---|---|
ImmutableBooleanList |
AbstractImmutableSortedMap.collectBoolean(BooleanFunction<? super V> booleanFunction) |
Modifier and Type | Method | Description |
---|---|---|
MutableBooleanList |
AbstractMutableSortedMap.collectBoolean(BooleanFunction<? super V> booleanFunction) |
|
MutableBooleanList |
SynchronizedSortedMap.collectBoolean(BooleanFunction<? super V> booleanFunction) |
|
MutableBooleanList |
UnmodifiableTreeMap.collectBoolean(BooleanFunction<? super V> booleanFunction) |
|
<R extends MutableBooleanCollection> |
UnmodifiableTreeMap.collectBoolean(BooleanFunction<? super V> booleanFunction,
R target) |
Modifier and Type | Method | Description |
---|---|---|
MutableBooleanSet |
AbstractUnifiedSet.collectBoolean(BooleanFunction<? super T> booleanFunction) |
Modifier and Type | Method | Description |
---|---|---|
ImmutableBooleanSet |
AbstractImmutableSet.collectBoolean(BooleanFunction<? super T> booleanFunction) |
Modifier and Type | Method | Description |
---|---|---|
MutableBooleanSet |
AbstractMutableSet.collectBoolean(BooleanFunction<? super T> booleanFunction) |
|
MutableBooleanSet |
MultiReaderUnifiedSet.collectBoolean(BooleanFunction<? super T> booleanFunction) |
|
MutableBooleanSet |
SetAdapter.collectBoolean(BooleanFunction<? super T> booleanFunction) |
|
MutableBooleanSet |
SynchronizedMutableSet.collectBoolean(BooleanFunction<? super T> booleanFunction) |
|
MutableBooleanSet |
UnmodifiableMutableSet.collectBoolean(BooleanFunction<? super T> booleanFunction) |
Modifier and Type | Method | Description |
---|---|---|
MutableBooleanList |
SortedSetAdapter.collectBoolean(BooleanFunction<? super T> booleanFunction) |
|
MutableBooleanList |
SynchronizedSortedSet.collectBoolean(BooleanFunction<? super T> booleanFunction) |
|
MutableBooleanList |
TreeSortedSet.collectBoolean(BooleanFunction<? super T> booleanFunction) |
|
MutableBooleanList |
UnmodifiableSortedSet.collectBoolean(BooleanFunction<? super T> booleanFunction) |
Modifier and Type | Method | Description |
---|---|---|
MutableBooleanStack |
ArrayStack.collectBoolean(BooleanFunction<? super T> booleanFunction) |
|
<R extends MutableBooleanCollection> |
ArrayStack.collectBoolean(BooleanFunction<? super T> booleanFunction,
R target) |
|
MutableBooleanStack |
SynchronizedStack.collectBoolean(BooleanFunction<? super T> booleanFunction) |
|
<R extends MutableBooleanCollection> |
SynchronizedStack.collectBoolean(BooleanFunction<? super T> booleanFunction,
R target) |
|
MutableBooleanStack |
UnmodifiableStack.collectBoolean(BooleanFunction<? super T> booleanFunction) |
|
<R extends MutableBooleanCollection> |
UnmodifiableStack.collectBoolean(BooleanFunction<? super T> booleanFunction,
R target) |
Modifier and Type | Method | Description |
---|---|---|
static <T> MutableBooleanList |
ArrayIterate.collectBoolean(T[] objectArray,
BooleanFunction<? super T> booleanFunction) |
|
static <T,R extends MutableBooleanCollection> |
ArrayIterate.collectBoolean(T[] objectArray,
BooleanFunction<? super T> booleanFunction,
R target) |
|
static <T> MutableBooleanList |
ArrayListIterate.collectBoolean(java.util.ArrayList<T> list,
BooleanFunction<? super T> booleanFunction) |
|
static <T,R extends MutableBooleanCollection> |
ArrayListIterate.collectBoolean(java.util.ArrayList<T> list,
BooleanFunction<? super T> booleanFunction,
R target) |
|
static <T> MutableBooleanCollection |
Iterate.collectBoolean(java.lang.Iterable<T> iterable,
BooleanFunction<? super T> booleanFunction) |
Returns a new primitive
boolean collection with the results of applying the specified booleanFunction for each element of the iterable. |
static <T,R extends MutableBooleanCollection> |
Iterate.collectBoolean(java.lang.Iterable<T> iterable,
BooleanFunction<? super T> booleanFunction,
R target) |
Same as
Iterate.collectBoolean(Iterable, BooleanFunction) , except that the results are gathered into the specified target
collection. |
static <T> MutableBooleanList |
ListIterate.collectBoolean(java.util.List<T> list,
BooleanFunction<? super T> booleanFunction) |
|
static <T,R extends MutableBooleanCollection> |
ListIterate.collectBoolean(java.util.List<T> list,
BooleanFunction<? super T> booleanFunction,
R target) |
|
static <K,V> MutableBooleanCollection |
MapIterate.collectBoolean(java.util.Map<K,V> map,
BooleanFunction<? super V> booleanFunction) |
|
static <K,V,R extends MutableBooleanCollection> |
MapIterate.collectBoolean(java.util.Map<K,V> map,
BooleanFunction<? super V> booleanFunction,
R target) |
Modifier and Type | Method | Description |
---|---|---|
static <T> MutableBooleanCollection |
IterableIterate.collectBoolean(java.lang.Iterable<T> iterable,
BooleanFunction<? super T> booleanFunction) |
|
static <T,R extends MutableBooleanCollection> |
IterableIterate.collectBoolean(java.lang.Iterable<T> iterable,
BooleanFunction<? super T> booleanFunction,
R target) |
|
static <T> MutableBooleanCollection |
IteratorIterate.collectBoolean(java.util.Iterator<T> iterator,
BooleanFunction<? super T> booleanFunction) |
|
static <T,R extends MutableBooleanCollection> |
IteratorIterate.collectBoolean(java.util.Iterator<T> iterator,
BooleanFunction<? super T> booleanFunction,
R target) |
|
static <T> MutableBooleanList |
RandomAccessListIterate.collectBoolean(java.util.List<T> list,
BooleanFunction<? super T> booleanFunction) |
|
static <T,R extends MutableBooleanCollection> |
RandomAccessListIterate.collectBoolean(java.util.List<T> list,
BooleanFunction<? super T> booleanFunction,
R target) |
Copyright © 2004–2018. All rights reserved.