| 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.factory.bag.primitive | |
| org.eclipse.collections.api.factory.list.primitive |
This package contains factory API for creating immutable primitive list instances.
|
| org.eclipse.collections.api.factory.set.primitive |
This package contains factory API for creating primitive set instances.
|
| org.eclipse.collections.api.factory.stack.primitive |
This package contains factory API for creating primitive stack instances.
|
| 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.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
LazyBooleanIterable
This file was automatically generated from template file lazyPrimitiveIterable.stg.
|
| Modifier and Type | Method and Description |
|---|---|
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. |
BooleanIterable |
BooleanIterable.reject(BooleanPredicate predicate)
Returns a new BooleanIterable with all of the elements in the BooleanIterable that
return false for the specified predicate.
|
BooleanIterable |
BooleanIterable.select(BooleanPredicate predicate)
Returns a new BooleanIterable with all of the elements in the BooleanIterable that
return true for the specified predicate.
|
default BooleanIterable |
BooleanIterable.tap(BooleanProcedure procedure) |
| Modifier and Type | Method and Description |
|---|---|
default RichIterable<BooleanIterable> |
BooleanIterable.chunk(int size)
Partitions elements in fixed size chunks.
|
| Modifier and Type | Method and Description |
|---|---|
default boolean |
BooleanIterable.containsAll(BooleanIterable source)
Returns true if all of the values specified in the source BooleanIterable are contained
in the BooleanIterable, and false if they are not.
|
default boolean |
BooleanIterable.containsAny(BooleanIterable source)
Returns true if any of the values specified in the source BooleanIterable are contained
in the BooleanIterable, and false if they are not.
|
default boolean |
BooleanIterable.containsNone(BooleanIterable source)
Returns true if none of the values specified in the source BooleanIterable are contained
in the BooleanIterable, and false if they are.
|
| Modifier and Type | Method and Description |
|---|---|
default <R extends MutableBooleanCollection> |
RichIterable.flatCollectBoolean(Function<? super T,? extends BooleanIterable> function,
R target)
Same as flatCollect, only the results are collected into the target collection.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
BooleanBag
This file was automatically generated from template file primitiveBag.stg.
|
interface |
ImmutableBooleanBag
This file was automatically generated from template file immutablePrimitiveBag.stg.
|
interface |
MutableBooleanBag
This file was automatically generated from template file mutablePrimitiveBag.stg.
|
| Modifier and Type | Method and Description |
|---|---|
ImmutableBooleanBag |
ImmutableBooleanBag.newWithAll(BooleanIterable elements) |
ImmutableBooleanBag |
ImmutableBooleanBag.newWithoutAll(BooleanIterable elements) |
MutableBooleanBag |
MutableBooleanBag.withAll(BooleanIterable elements) |
MutableBooleanBag |
MutableBooleanBag.withoutAll(BooleanIterable elements) |
| Modifier and Type | Interface and Description |
|---|---|
interface |
ImmutableBooleanCollection
This file was automatically generated from template file immutablePrimitiveCollection.stg.
|
interface |
MutableBooleanCollection
This file was automatically generated from template file mutablePrimitiveCollection.stg.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
MutableBooleanCollection.addAll(BooleanIterable source) |
ImmutableBooleanCollection |
ImmutableBooleanCollection.newWithAll(BooleanIterable elements) |
ImmutableBooleanCollection |
ImmutableBooleanCollection.newWithoutAll(BooleanIterable elements) |
boolean |
MutableBooleanCollection.removeAll(BooleanIterable source) |
boolean |
MutableBooleanCollection.retainAll(BooleanIterable elements) |
MutableBooleanCollection |
MutableBooleanCollection.withAll(BooleanIterable elements) |
MutableBooleanCollection |
MutableBooleanCollection.withoutAll(BooleanIterable elements) |
| Modifier and Type | Method and Description |
|---|---|
MutableBooleanBag |
MutableBooleanBagFactory.ofAll(BooleanIterable items)
|
ImmutableBooleanBag |
ImmutableBooleanBagFactory.ofAll(BooleanIterable items)
|
MutableBooleanBag |
MutableBooleanBagFactory.withAll(BooleanIterable items) |
ImmutableBooleanBag |
ImmutableBooleanBagFactory.withAll(BooleanIterable items) |
| Modifier and Type | Method and Description |
|---|---|
MutableBooleanList |
MutableBooleanListFactory.ofAll(BooleanIterable items)
|
ImmutableBooleanList |
ImmutableBooleanListFactory.ofAll(BooleanIterable items)
|
MutableBooleanList |
MutableBooleanListFactory.withAll(BooleanIterable items) |
ImmutableBooleanList |
ImmutableBooleanListFactory.withAll(BooleanIterable items) |
| Modifier and Type | Method and Description |
|---|---|
MutableBooleanSet |
MutableBooleanSetFactory.ofAll(BooleanIterable items)
|
ImmutableBooleanSet |
ImmutableBooleanSetFactory.ofAll(BooleanIterable items)
|
MutableBooleanSet |
MutableBooleanSetFactory.withAll(BooleanIterable items) |
ImmutableBooleanSet |
ImmutableBooleanSetFactory.withAll(BooleanIterable items) |
| Modifier and Type | Method and Description |
|---|---|
MutableBooleanStack |
MutableBooleanStackFactory.ofAll(BooleanIterable items)
|
ImmutableBooleanStack |
ImmutableBooleanStackFactory.ofAll(BooleanIterable items)
|
MutableBooleanStack |
MutableBooleanStackFactory.ofAllReversed(BooleanIterable items)
|
ImmutableBooleanStack |
ImmutableBooleanStackFactory.ofAllReversed(BooleanIterable items)
|
MutableBooleanStack |
MutableBooleanStackFactory.withAll(BooleanIterable items) |
ImmutableBooleanStack |
ImmutableBooleanStackFactory.withAll(BooleanIterable items) |
MutableBooleanStack |
MutableBooleanStackFactory.withAllReversed(BooleanIterable items) |
ImmutableBooleanStack |
ImmutableBooleanStackFactory.withAllReversed(BooleanIterable items) |
| Modifier and Type | Interface and Description |
|---|---|
interface |
BooleanList
This file was automatically generated from template file primitiveList.stg.
|
interface |
ImmutableBooleanList
This file was automatically generated from template file immutablePrimitiveList.stg.
|
interface |
MutableBooleanList
This file was automatically generated from template file mutablePrimitiveList.stg.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
MutableBooleanList.addAllAtIndex(int index,
BooleanIterable source) |
ImmutableBooleanList |
ImmutableBooleanList.newWithAll(BooleanIterable elements) |
ImmutableBooleanList |
ImmutableBooleanList.newWithoutAll(BooleanIterable elements) |
MutableBooleanList |
MutableBooleanList.withAll(BooleanIterable elements) |
MutableBooleanList |
MutableBooleanList.withoutAll(BooleanIterable elements) |
default ListIterable<BooleanBooleanPair> |
BooleanList.zipBoolean(BooleanIterable iterable)
Returns a
ListIterable formed from this BooleanList and another BooleanList by
combining corresponding elements in pairs. |
default MutableList<BooleanBooleanPair> |
MutableBooleanList.zipBoolean(BooleanIterable iterable)
Returns a
MutableList formed from this MutableBooleanList and another BooleanList by
combining corresponding elements in pairs. |
default ImmutableList<BooleanBooleanPair> |
ImmutableBooleanList.zipBoolean(BooleanIterable iterable)
Returns an
ImmutableList formed from this ImmutableBooleanList and another BooleanList by
combining corresponding elements in pairs. |
| Modifier and Type | Interface and Description |
|---|---|
interface |
BooleanValuesMap
This file was automatically generated from template file primitiveValuesMap.stg.
|
interface |
ByteBooleanMap
This file was automatically generated from template file primitivePrimitiveMap.stg.
|
interface |
CharBooleanMap
This file was automatically generated from template file primitivePrimitiveMap.stg.
|
interface |
DoubleBooleanMap
This file was automatically generated from template file primitivePrimitiveMap.stg.
|
interface |
FloatBooleanMap
This file was automatically generated from template file primitivePrimitiveMap.stg.
|
interface |
ImmutableByteBooleanMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.
|
interface |
ImmutableCharBooleanMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.
|
interface |
ImmutableDoubleBooleanMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.
|
interface |
ImmutableFloatBooleanMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.
|
interface |
ImmutableIntBooleanMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.
|
interface |
ImmutableLongBooleanMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.
|
interface |
ImmutableObjectBooleanMap<K>
This file was automatically generated from template file immutableObjectPrimitiveMap.stg.
|
interface |
ImmutableShortBooleanMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.
|
interface |
IntBooleanMap
This file was automatically generated from template file primitivePrimitiveMap.stg.
|
interface |
LongBooleanMap
This file was automatically generated from template file primitivePrimitiveMap.stg.
|
interface |
MutableBooleanValuesMap
This file was automatically generated from template file mutablePrimitiveValuesMap.stg.
|
interface |
MutableByteBooleanMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.
|
interface |
MutableCharBooleanMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.
|
interface |
MutableDoubleBooleanMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.
|
interface |
MutableFloatBooleanMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.
|
interface |
MutableIntBooleanMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.
|
interface |
MutableLongBooleanMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.
|
interface |
MutableObjectBooleanMap<K>
This file was automatically generated from template file mutableObjectPrimitiveMap.stg.
|
interface |
MutableShortBooleanMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.
|
interface |
ObjectBooleanMap<K>
This file was automatically generated from template file objectPrimitiveMap.stg.
|
interface |
ShortBooleanMap
This file was automatically generated from template file primitivePrimitiveMap.stg.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
OrderedBooleanIterable
This file was automatically generated from template file orderedPrimitiveIterable.stg.
|
interface |
ReversibleBooleanIterable
This file was automatically generated from template file reversiblePrimitiveIterable.stg.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
BooleanSet
This file was automatically generated from template file primitiveSet.stg.
|
interface |
ImmutableBooleanSet
This file was automatically generated from template file immutablePrimitiveSet.stg.
|
interface |
MutableBooleanSet
This file was automatically generated from template file mutablePrimitiveSet.stg.
|
| Modifier and Type | Method and Description |
|---|---|
ImmutableBooleanSet |
ImmutableBooleanSet.newWithAll(BooleanIterable elements) |
ImmutableBooleanSet |
ImmutableBooleanSet.newWithoutAll(BooleanIterable elements) |
MutableBooleanSet |
MutableBooleanSet.withAll(BooleanIterable elements) |
MutableBooleanSet |
MutableBooleanSet.withoutAll(BooleanIterable elements) |
| Modifier and Type | Interface and Description |
|---|---|
interface |
BooleanStack
This file was automatically generated from template file primitiveStack.stg.
|
interface |
ImmutableBooleanStack
This file was automatically generated from template file immutablePrimitiveStack.stg.
|
interface |
MutableBooleanStack
This file was automatically generated from template file mutablePrimitiveStack.stg.
|
Copyright © 2004–2023. All rights reserved.