| Package | Description |
|---|---|
| org.eclipse.collections.api.bag |
This package contains interfaces for Bag API.
|
| org.eclipse.collections.api.bag.primitive |
This package contains API for Primitive Bags with Mutable and Immutable variants.
|
| org.eclipse.collections.api.factory.bag.primitive | |
| 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.
|
| Modifier and Type | Method and Description |
|---|---|
ImmutableCharBag |
ImmutableBag.collectChar(CharFunction<? super T> charFunction) |
| Modifier and Type | Method and Description |
|---|---|
ImmutableCharBag |
ImmutableCharBag.newWith(char element) |
ImmutableCharBag |
ImmutableCharBag.newWithAll(CharIterable elements) |
ImmutableCharBag |
ImmutableCharBag.newWithout(char element) |
ImmutableCharBag |
ImmutableCharBag.newWithoutAll(CharIterable elements) |
ImmutableCharBag |
ImmutableCharBag.reject(CharPredicate predicate) |
ImmutableCharBag |
ImmutableCharBag.select(CharPredicate predicate) |
ImmutableCharBag |
ImmutableCharBag.selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.
|
default ImmutableCharBag |
ImmutableCharBag.selectDuplicates()
Returns all elements of the bag that have more than one occurrence.
|
default ImmutableCharBag |
ImmutableCharBag.tap(CharProcedure procedure) |
ImmutableCharBag |
CharBag.toImmutable()
Returns an immutable copy of this bag.
|
ImmutableCharBag |
MutableCharBag.toImmutable()
Returns an immutable copy of this bag.
|
| Modifier and Type | Method and Description |
|---|---|
ImmutableCharBag |
ImmutableCharBagFactory.empty() |
ImmutableCharBag |
ImmutableCharBagFactory.of()
Same as
ImmutableCharBagFactory.empty(). |
ImmutableCharBag |
ImmutableCharBagFactory.of(char... items)
Same as
ImmutableCharBagFactory.with(char[]). |
ImmutableCharBag |
ImmutableCharBagFactory.of(char one)
Same as
ImmutableCharBagFactory.with(char). |
ImmutableCharBag |
ImmutableCharBagFactory.ofAll(CharIterable items)
|
ImmutableCharBag |
ImmutableCharBagFactory.ofAll(Iterable<Character> iterable)
|
ImmutableCharBag |
ImmutableCharBagFactory.with()
Same as
ImmutableCharBagFactory.empty(). |
ImmutableCharBag |
ImmutableCharBagFactory.with(char... items) |
ImmutableCharBag |
ImmutableCharBagFactory.with(char one) |
ImmutableCharBag |
ImmutableCharBagFactory.withAll(CharIterable items) |
ImmutableCharBag |
ImmutableCharBagFactory.withAll(Iterable<Character> iterable) |
| Modifier and Type | Method and Description |
|---|---|
ImmutableCharBag |
ImmutableMap.collectChar(CharFunction<? super V> charFunction) |
| Modifier and Type | Method and Description |
|---|---|
ImmutableCharBag |
ImmutablePrimitiveObjectMap.collectChar(CharFunction<? super V> charFunction) |
ImmutableCharBag |
ImmutableCharCharMap.reject(CharPredicate predicate) |
ImmutableCharBag |
ImmutableByteCharMap.reject(CharPredicate predicate) |
ImmutableCharBag |
ImmutableShortCharMap.reject(CharPredicate predicate) |
ImmutableCharBag |
ImmutableLongCharMap.reject(CharPredicate predicate) |
ImmutableCharBag |
ImmutableDoubleCharMap.reject(CharPredicate predicate) |
ImmutableCharBag |
ImmutableFloatCharMap.reject(CharPredicate predicate) |
ImmutableCharBag |
ImmutableIntCharMap.reject(CharPredicate predicate) |
ImmutableCharBag |
ImmutableCharCharMap.select(CharPredicate predicate) |
ImmutableCharBag |
ImmutableByteCharMap.select(CharPredicate predicate) |
ImmutableCharBag |
ImmutableShortCharMap.select(CharPredicate predicate) |
ImmutableCharBag |
ImmutableLongCharMap.select(CharPredicate predicate) |
ImmutableCharBag |
ImmutableDoubleCharMap.select(CharPredicate predicate) |
ImmutableCharBag |
ImmutableFloatCharMap.select(CharPredicate predicate) |
ImmutableCharBag |
ImmutableIntCharMap.select(CharPredicate predicate) |
Copyright © 2004–2023. All rights reserved.