| Package | Description |
|---|---|
| org.eclipse.collections.api.bag.primitive |
This package contains API for Primitive Bags with Mutable and Immutable variants.
|
| org.eclipse.collections.api.factory.set.primitive |
This package contains factory API for creating primitive set instances.
|
| 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.primitive |
This package contains API for mutable and immutable primitive sets.
|
| Modifier and Type | Method and Description |
|---|---|
ImmutableCharSet |
ImmutableCharBag.selectUnique()
Returns all elements of the bag that have exactly one occurrence.
|
| Modifier and Type | Method and Description |
|---|---|
ImmutableCharSet |
ImmutableCharSetFactory.empty() |
ImmutableCharSet |
ImmutableCharSetFactory.of()
Same as
ImmutableCharSetFactory.empty(). |
ImmutableCharSet |
ImmutableCharSetFactory.of(char... items)
Same as
ImmutableCharSetFactory.with(char[]). |
ImmutableCharSet |
ImmutableCharSetFactory.of(char one)
Same as
ImmutableCharSetFactory.with(char). |
ImmutableCharSet |
ImmutableCharSetFactory.ofAll(CharIterable items)
|
ImmutableCharSet |
ImmutableCharSetFactory.ofAll(Iterable<Character> iterable)
|
ImmutableCharSet |
ImmutableCharSetFactory.with()
Same as
ImmutableCharSetFactory.empty(). |
ImmutableCharSet |
ImmutableCharSetFactory.with(char... items) |
ImmutableCharSet |
ImmutableCharSetFactory.with(char one) |
ImmutableCharSet |
ImmutableCharSetFactory.withAll(CharIterable items) |
ImmutableCharSet |
ImmutableCharSetFactory.withAll(Iterable<Character> iterable) |
| Modifier and Type | Method and Description |
|---|---|
ImmutableCharSet |
ImmutableSet.collectChar(CharFunction<? super T> charFunction) |
| Modifier and Type | Method and Description |
|---|---|
default ImmutableCharSet |
ImmutableCharSet.difference(CharSet set)
Returns the set of all members of
this that are not members of set. |
default ImmutableCharSet |
ImmutableCharSet.intersect(CharSet set)
Returns the set of all objects that are members of both
this and set. |
ImmutableCharSet |
ImmutableCharSet.newWith(char element) |
ImmutableCharSet |
ImmutableCharSet.newWithAll(CharIterable elements) |
ImmutableCharSet |
ImmutableCharSet.newWithout(char element) |
ImmutableCharSet |
ImmutableCharSet.newWithoutAll(CharIterable elements) |
ImmutableCharSet |
ImmutableCharSet.reject(CharPredicate predicate) |
ImmutableCharSet |
ImmutableCharSet.select(CharPredicate predicate) |
default ImmutableCharSet |
ImmutableCharSet.symmetricDifference(CharSet set)
Returns the set of all objects that are a member of exactly one of
this and set (elements which
are in one of the sets, but not in both). |
default ImmutableCharSet |
ImmutableCharSet.tap(CharProcedure procedure) |
ImmutableCharSet |
CharSet.toImmutable()
Returns an immutable copy of this set.
|
ImmutableCharSet |
MutableCharSet.toImmutable()
Returns an immutable copy of this set.
|
default ImmutableCharSet |
ImmutableCharSet.union(CharSet set) |
Copyright © 2004–2023. All rights reserved.