| 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.factory.set.primitive | |
| 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 |
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 |
|---|---|
MutableCharSet |
CharIterable.toSet()
Converts the CharIterable to a new MutableCharSet.
|
| Modifier and Type | Method and Description |
|---|---|
MutableCharSet |
MutableCharBag.selectUnique()
Returns all elements of the bag that have exactly one occurrence.
|
| Modifier and Type | Method and Description |
|---|---|
MutableCharSet |
MutableCharSetFactory.empty() |
MutableCharSet |
MutableCharSetFactory.of()
Same as
MutableCharSetFactory.empty(). |
MutableCharSet |
MutableCharSetFactory.of(char... items)
Same as
MutableCharSetFactory.with(char[]). |
MutableCharSet |
MutableCharSetFactory.ofAll(CharIterable items)
|
MutableCharSet |
MutableCharSetFactory.ofAll(Iterable<Character> iterable)
|
MutableCharSet |
MutableCharSetFactory.with()
Same as
MutableCharSetFactory.empty(). |
MutableCharSet |
MutableCharSetFactory.with(char... items) |
MutableCharSet |
MutableCharSetFactory.withAll(CharIterable items) |
MutableCharSet |
MutableCharSetFactory.withAll(Iterable<Character> iterable) |
default MutableCharSet |
MutableCharSetFactory.withInitialCapacity(int capacity)
Same as
MutableCharSetFactory.empty(). |
| Modifier and Type | Method and Description |
|---|---|
MutableCharSet |
CharBooleanMap.keySet()
Returns a set containing all the keys in this map.
|
MutableCharSet |
CharCharMap.keySet()
Returns a set containing all the keys in this map.
|
MutableCharSet |
CharByteMap.keySet()
Returns a set containing all the keys in this map.
|
MutableCharSet |
CharShortMap.keySet()
Returns a set containing all the keys in this map.
|
MutableCharSet |
CharLongMap.keySet()
Returns a set containing all the keys in this map.
|
MutableCharSet |
CharDoubleMap.keySet()
Returns a set containing all the keys in this map.
|
MutableCharSet |
CharFloatMap.keySet()
Returns a set containing all the keys in this map.
|
MutableCharSet |
CharIntMap.keySet()
Returns a set containing all the keys in this map.
|
MutableCharSet |
CharObjectMap.keySet()
Returns a set containing all the keys in this map.
|
| Modifier and Type | Method and Description |
|---|---|
MutableCharSet |
MutableSet.collectChar(CharFunction<? super T> charFunction) |
| Modifier and Type | Method and Description |
|---|---|
MutableCharSet |
MutableCharSet.asSynchronized() |
MutableCharSet |
MutableCharSet.asUnmodifiable() |
default MutableCharSet |
MutableCharSet.newEmpty()
Creates a new empty mutable version of the same Set type.
|
MutableCharSet |
MutableCharSet.reject(CharPredicate predicate) |
MutableCharSet |
MutableCharSet.select(CharPredicate predicate) |
default MutableCharSet |
MutableCharSet.tap(CharProcedure procedure) |
MutableCharSet |
MutableCharSet.with(char element) |
MutableCharSet |
MutableCharSet.withAll(CharIterable elements) |
MutableCharSet |
MutableCharSet.without(char element) |
MutableCharSet |
MutableCharSet.withoutAll(CharIterable elements) |
Copyright © 2004–2020. All rights reserved.