| Package | Description |
|---|---|
| org.eclipse.collections.api |
This package contains interfaces for Eclipse Collections API.
|
| org.eclipse.collections.api.bag.sorted |
This package contains interfaces for SortedBag API.
|
| org.eclipse.collections.api.factory.list.primitive |
This package contains factory API for creating immutable primitive list instances.
|
| org.eclipse.collections.api.list |
This package contains interfaces for list API which enhance the performance and functionality of
List. |
| org.eclipse.collections.api.list.primitive |
This package contains mutable and immutable primitive list API.
|
| 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.sorted |
This package contains mutable and immutable sorted map interfaces.
|
| org.eclipse.collections.api.set.sorted |
This package contains interfaces for sorted set API.
|
| Modifier and Type | Method and Description |
|---|---|
MutableCharList |
CharIterable.toList()
Converts the CharIterable to a new MutableCharList.
|
MutableCharList |
CharIterable.toSortedList() |
default MutableCharList |
CharIterable.toSortedList(CharComparator comparator)
Converts the collection to a MutableCharList implementation sorted using the provided comparator.
|
default <T> MutableCharList |
CharIterable.toSortedListBy(CharToObjectFunction<T> function)
Converts the collection to a MutableCharListImplementation sorted based on the natural order of the key returned
by
function. |
default <T> MutableCharList |
CharIterable.toSortedListBy(CharToObjectFunction<T> function,
Comparator<? super T> comparator)
Converts the collection to a MutableCharList implementation, which is sorted based on the key returned by
function using the provided comparator. |
| Modifier and Type | Method and Description |
|---|---|
MutableCharList |
MutableSortedBag.collectChar(CharFunction<? super T> charFunction) |
| Modifier and Type | Method and Description |
|---|---|
MutableCharList |
MutableCharListFactory.empty() |
MutableCharList |
MutableCharListFactory.of()
Same as
MutableCharListFactory.empty(). |
MutableCharList |
MutableCharListFactory.of(char... items)
Same as
MutableCharListFactory.with(char[]). |
MutableCharList |
MutableCharListFactory.ofAll(CharIterable items)
|
MutableCharList |
MutableCharListFactory.ofAll(Iterable<Character> iterable)
|
MutableCharList |
MutableCharListFactory.with()
Same as
MutableCharListFactory.empty(). |
MutableCharList |
MutableCharListFactory.with(char... items)
Creates a new list using the passed
items argument as the backing store. |
MutableCharList |
MutableCharListFactory.withAll(CharIterable items) |
MutableCharList |
MutableCharListFactory.withAll(Iterable<Character> iterable) |
default MutableCharList |
MutableCharListFactory.withInitialCapacity(int capacity)
Same as
MutableCharListFactory.empty(). |
default MutableCharList |
MutableCharListFactory.wrapCopy(char... array)
Creates a new list by first copying the array passed in.
|
| Modifier and Type | Method and Description |
|---|---|
MutableCharList |
MutableList.collectChar(CharFunction<? super T> charFunction) |
| Modifier and Type | Method and Description |
|---|---|
MutableCharList |
MutableCharList.asSynchronized() |
MutableCharList |
MutableCharList.asUnmodifiable() |
MutableCharList |
MutableCharList.distinct() |
default MutableCharList |
MutableCharList.newEmpty()
Creates a new empty mutable version of the same List type.
|
MutableCharList |
MutableCharList.reject(CharPredicate predicate) |
MutableCharList |
MutableCharList.reverseThis() |
MutableCharList |
MutableCharList.select(CharPredicate predicate) |
default MutableCharList |
MutableCharList.shuffleThis()
Randomly permutes this list mutating its contents and returns the same list (this).
|
default MutableCharList |
MutableCharList.shuffleThis(Random rnd)
Randomly permutes this list mutating its contents and returns the same list (this).
|
MutableCharList |
MutableCharList.sortThis()
Sorts this list mutating its contents and returns the same mutable list (this).
|
default MutableCharList |
MutableCharList.sortThis(CharComparator comparator)
Sorts the internal data structure of this list and returns the list itself as a convenience.
|
default <T> MutableCharList |
MutableCharList.sortThisBy(CharToObjectFunction<T> function)
Sorts the internal data structure of this list based on the natural order of the key returned by
function. |
default <T> MutableCharList |
MutableCharList.sortThisBy(CharToObjectFunction<T> function,
Comparator<? super T> comparator)
Sorts the internal data structure of this list based on the key returned by
function using the provided comparator. |
MutableCharList |
MutableCharList.subList(int fromIndex,
int toIndex) |
default MutableCharList |
MutableCharList.tap(CharProcedure procedure) |
MutableCharList |
MutableCharList.toReversed() |
MutableCharList |
MutableCharList.with(char element) |
MutableCharList |
MutableCharList.withAll(CharIterable elements) |
MutableCharList |
MutableCharList.without(char element) |
MutableCharList |
MutableCharList.withoutAll(CharIterable elements) |
| Modifier and Type | Method and Description |
|---|---|
MutableCharList |
MutableOrderedMap.collectChar(CharFunction<? super V> charFunction) |
| Modifier and Type | Method and Description |
|---|---|
MutableCharList |
MutableSortedMap.collectChar(CharFunction<? super V> charFunction) |
| Modifier and Type | Method and Description |
|---|---|
MutableCharList |
MutableSortedSet.collectChar(CharFunction<? super T> charFunction) |
Copyright © 2004–2021. All rights reserved.