| 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 |
|---|---|
MutableByteList |
ByteIterable.toList()
Converts the ByteIterable to a new MutableByteList.
|
MutableByteList |
ByteIterable.toSortedList() |
default MutableByteList |
ByteIterable.toSortedList(ByteComparator comparator)
Converts the collection to a MutableByteList implementation sorted using the provided comparator.
|
default <T> MutableByteList |
ByteIterable.toSortedListBy(ByteToObjectFunction<T> function)
Converts the collection to a MutableByteListImplementation sorted based on the natural order of the key returned
by
function. |
default <T> MutableByteList |
ByteIterable.toSortedListBy(ByteToObjectFunction<T> function,
Comparator<? super T> comparator)
Converts the collection to a MutableByteList implementation, which is sorted based on the key returned by
function using the provided comparator. |
| Modifier and Type | Method and Description |
|---|---|
MutableByteList |
MutableSortedBag.collectByte(ByteFunction<? super T> byteFunction) |
| Modifier and Type | Method and Description |
|---|---|
MutableByteList |
MutableByteListFactory.empty() |
MutableByteList |
MutableByteListFactory.of()
Same as
MutableByteListFactory.empty(). |
MutableByteList |
MutableByteListFactory.of(byte... items)
Same as
MutableByteListFactory.with(byte[]). |
MutableByteList |
MutableByteListFactory.ofAll(ByteIterable items)
|
MutableByteList |
MutableByteListFactory.ofAll(Iterable<Byte> iterable)
|
MutableByteList |
MutableByteListFactory.with()
Same as
MutableByteListFactory.empty(). |
MutableByteList |
MutableByteListFactory.with(byte... items)
Creates a new list using the passed
items argument as the backing store. |
MutableByteList |
MutableByteListFactory.withAll(ByteIterable items) |
MutableByteList |
MutableByteListFactory.withAll(Iterable<Byte> iterable) |
default MutableByteList |
MutableByteListFactory.withInitialCapacity(int capacity)
Same as
MutableByteListFactory.empty(). |
default MutableByteList |
MutableByteListFactory.wrapCopy(byte... array)
Creates a new list by first copying the array passed in.
|
| Modifier and Type | Method and Description |
|---|---|
MutableByteList |
MutableList.collectByte(ByteFunction<? super T> byteFunction) |
| Modifier and Type | Method and Description |
|---|---|
MutableByteList |
MutableByteList.asSynchronized() |
MutableByteList |
MutableByteList.asUnmodifiable() |
MutableByteList |
MutableByteList.distinct() |
default MutableByteList |
MutableByteList.newEmpty()
Creates a new empty mutable version of the same List type.
|
MutableByteList |
MutableByteList.reject(BytePredicate predicate) |
MutableByteList |
MutableByteList.reverseThis() |
MutableByteList |
MutableByteList.select(BytePredicate predicate) |
default MutableByteList |
MutableByteList.shuffleThis()
Randomly permutes this list mutating its contents and returns the same list (this).
|
default MutableByteList |
MutableByteList.shuffleThis(Random rnd)
Randomly permutes this list mutating its contents and returns the same list (this).
|
MutableByteList |
MutableByteList.sortThis()
Sorts this list mutating its contents and returns the same mutable list (this).
|
default MutableByteList |
MutableByteList.sortThis(ByteComparator comparator)
Sorts the internal data structure of this list and returns the list itself as a convenience.
|
default <T> MutableByteList |
MutableByteList.sortThisBy(ByteToObjectFunction<T> function)
Sorts the internal data structure of this list based on the natural order of the key returned by
function. |
default <T> MutableByteList |
MutableByteList.sortThisBy(ByteToObjectFunction<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. |
MutableByteList |
MutableByteList.subList(int fromIndex,
int toIndex) |
default MutableByteList |
MutableByteList.tap(ByteProcedure procedure) |
MutableByteList |
MutableByteList.toReversed() |
MutableByteList |
MutableByteList.with(byte element) |
MutableByteList |
MutableByteList.withAll(ByteIterable elements) |
MutableByteList |
MutableByteList.without(byte element) |
MutableByteList |
MutableByteList.withoutAll(ByteIterable elements) |
| Modifier and Type | Method and Description |
|---|---|
MutableByteList |
MutableOrderedMap.collectByte(ByteFunction<? super V> byteFunction) |
| Modifier and Type | Method and Description |
|---|---|
MutableByteList |
MutableSortedMap.collectByte(ByteFunction<? super V> byteFunction) |
| Modifier and Type | Method and Description |
|---|---|
MutableByteList |
MutableSortedSet.collectByte(ByteFunction<? super T> byteFunction) |
Copyright © 2004–2021. All rights reserved.