| Package | Description |
|---|---|
| org.eclipse.collections.impl.list.mutable.primitive |
This package contains implementations of the mutable primitive list interfaces.
|
| Modifier and Type | Method and Description |
|---|---|
ByteArrayList |
ByteArrayList.newEmpty()
Creates a new empty ByteArrayList.
|
static ByteArrayList |
ByteArrayList.newList(ByteIterable source) |
static ByteArrayList |
ByteArrayList.newListWith(byte... elements)
Creates a new list using the passed
elements argument as the backing store. |
static ByteArrayList |
ByteArrayList.newWithNValues(int size,
byte value) |
ByteArrayList |
ByteArrayList.reject(BytePredicate predicate) |
ByteArrayList |
ByteArrayList.reverseThis() |
ByteArrayList |
ByteArrayList.select(BytePredicate predicate) |
ByteArrayList |
ByteArrayList.sortThis() |
ByteArrayList |
ByteArrayList.sortThis(ByteComparator comparator) |
ByteArrayList |
ByteArrayList.toReversed() |
ByteArrayList |
ByteArrayList.with(byte element) |
ByteArrayList |
ByteArrayList.with(byte element1,
byte element2) |
ByteArrayList |
ByteArrayList.with(byte element1,
byte element2,
byte element3) |
ByteArrayList |
ByteArrayList.with(byte element1,
byte element2,
byte element3,
byte... elements) |
ByteArrayList |
ByteArrayList.withAll(ByteIterable elements) |
ByteArrayList |
ByteArrayList.without(byte element) |
ByteArrayList |
ByteArrayList.withoutAll(ByteIterable elements) |
static ByteArrayList |
ByteArrayList.wrapCopy(byte... array)
Creates a new list by first copying the array passed in.
|
Copyright © 2004–2022. All rights reserved.