public class CopyOnWriteByteArrayList extends AbstractByteList implements ITrimmable, ByteStack
This implementation is optimized to improve how data is processed with interfaces like ITrimmable, ByteStack
and with optimized functions that use type-specific implementations for primitives and optimized logic for bulkactions.
ISizeProvider.CollectionSize| Constructor and Description |
|---|
CopyOnWriteByteArrayList()
Creates a new ArrayList with a Empty array.
|
CopyOnWriteByteArrayList(byte... a)
Creates a new ArrayList with a Copy of the array
|
CopyOnWriteByteArrayList(byte[] a,
int length)
Creates a new ArrayList with a Copy of the array with a custom length
|
CopyOnWriteByteArrayList(byte[] a,
int offset,
int length)
Creates a new ArrayList with a Copy of the array with in the custom range.
|
CopyOnWriteByteArrayList(ByteCollection c)
Creates a new ArrayList a copy with the contents of the Collection.
|
CopyOnWriteByteArrayList(ByteList l)
Creates a new ArrayList a copy with the contents of the List.
|
CopyOnWriteByteArrayList(java.util.Collection<? extends java.lang.Byte> c)
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
add(byte e)
Appends the specified element to the end of this list.
|
void |
add(int index,
byte e)
Appends the specified element to the index of the list
|
boolean |
addAll(byte[] e,
int offset,
int length)
A Type-Specific Array based addAll method to reduce the amount of Wrapping
|
boolean |
addAll(int index,
ByteCollection c)
Appends the specified elements to the index of the list.
|
boolean |
addAll(int index,
ByteList c)
Appends the specified elements to the index of the list.
|
boolean |
addAll(int index,
java.util.Collection<? extends java.lang.Byte> c)
Deprecated.
|
void |
addElements(int from,
byte[] a,
int offset,
int length)
Appends the specified array elements to the index of the list.
|
void |
clear()
A function to clear all elements in the list.
|
void |
clearAndTrim(int size)
Trims the collection down to the requested size and clears all elements while doing so
|
boolean |
contains(byte e)
A Type Specific implementation of the Collection#contains function.
|
boolean |
contains(java.lang.Object o)
Deprecated.
|
CopyOnWriteByteArrayList |
copy()
A Function that does a shallow clone of the Collection itself.
|
int |
count(BytePredicate filter)
Helper function to reduce stream usage that allows to count the valid elements.
|
byte[] |
extractElements(int from,
int to)
A function to fast extract elements out of the list, this removes the elements that were fetched.
|
void |
fillBuffer(java.nio.ByteBuffer buffer)
Helper function that allows to fastFill a buffer reducing the duplication requirement
|
byte |
findFirst(BytePredicate filter)
Helper function to reduce stream usage that allows to filter for the first match.
|
void |
forEach(ByteConsumer action)
A Type Specific foreach function that reduces (un)boxing
|
<E> void |
forEach(E input,
ObjectByteConsumer<E> action)
Helper function to reduce Lambda usage and allow for more method references, since these are faster/cleaner.
|
byte |
getByte(int index)
A Type-Specific get function to reduce (un)boxing
|
byte[] |
getElements(int from,
byte[] a,
int offset,
int length)
A function to fast fetch elements from the list
|
int |
indexOf(byte e)
A Type-Specific function to find the index of a given element
|
int |
indexOf(java.lang.Object o)
Deprecated.
|
int |
lastIndexOf(byte e)
A Type-Specific function to find the last index of a given element
|
int |
lastIndexOf(java.lang.Object o)
Deprecated.
|
ByteListIterator |
listIterator(int index)
A Type-Specific Iterator of listIterator
|
boolean |
matchesAll(BytePredicate filter)
Helper function to reduce stream usage that allows to filter for all matches.
|
boolean |
matchesAny(BytePredicate filter)
Helper function to reduce stream usage that allows to filter for any matches.
|
boolean |
matchesNone(BytePredicate filter)
Helper function to reduce stream usage that allows to filter for no matches.
|
byte |
peek(int index)
Provides the Selected Object from the stack.
|
byte |
pop()
A Type-Specific pop function to reduce (un)boxing
|
java.util.stream.IntStream |
primitiveStream()
Returns a Java-Type-Specific Stream to reduce boxing/unboxing.
|
void |
push(byte e)
Appends the specified element to the end of this Stack.
|
byte |
reduce(byte identity,
ByteByteUnaryOperator operator)
Performs a reduction on the
elements of this Iterable
|
byte |
reduce(ByteByteUnaryOperator operator)
Performs a reduction on the
elements of this Iterable
|
boolean |
remByte(byte type)
A Type-Specific implementation of remove.
|
boolean |
remIf(java.util.function.IntPredicate filter)
A optimized List#removeIf(Predicate) that more quickly removes elements from the list then the ArrayList implementation
|
boolean |
removeAll(ByteCollection c)
A function to remove all elements that were provided in the other collection
|
boolean |
removeAll(ByteCollection c,
ByteConsumer r)
A Type-Specific removeAll function that reduces (un)boxing.
|
boolean |
removeAll(java.util.Collection<?> c)
Deprecated.
|
byte |
removeByte(int index)
A Type-Specific remove function to reduce (un)boxing
|
void |
removeElements(int from,
int to)
a function to fast remove elements from the list.
|
boolean |
removeIf(java.util.function.Predicate<? super java.lang.Byte> filter)
Deprecated.
|
void |
replaceAll(java.util.function.UnaryOperator<java.lang.Byte> o)
Deprecated.
|
void |
replaceBytes(java.util.function.IntUnaryOperator o)
A Type-Specific replace function to reduce (un)boxing
|
boolean |
retainAll(ByteCollection c)
A function to retain all elements that were provided in the other collection
This function might delegate to a more appropriate function if necessary
|
boolean |
retainAll(ByteCollection c,
ByteConsumer r)
A Type-Specific retainAll function that reduces (un)boxing.
|
boolean |
retainAll(java.util.Collection<?> c)
Deprecated.
|
byte |
set(int index,
byte e)
A Type-Specific set function to reduce (un)boxing
|
int |
size()
A function to return the size of the list
|
void |
size(int size)
A function to ensure the elements are within the requested size.
|
void |
sort(ByteComparator c)
Sorts the elements specified by the Natural order either by using the Comparator or the elements
|
ByteSplititerator |
spliterator()
A Type Specific Type Splititerator to reduce boxing/unboxing
|
ByteList |
subList(int fromIndex,
int toIndex)
A Type-Specific List of subList
|
byte |
swapRemove(int index)
A Highly Optimized remove function that removes the desired element.
|
java.lang.Object[] |
toArray()
Deprecated.
|
<E> E[] |
toArray(E[] a)
Deprecated.
|
byte[] |
toByteArray(byte[] a)
A Type-Specific implementation of toArray.
|
boolean |
trim(int size)
Trims the original collection down to the size of the current elements or the requested size depending which is bigger
|
void |
unstableSort(ByteComparator c)
Sorts the elements specified by the Natural order either by using the Comparator or the elements using a unstable sort
|
add, addAll, addAll, addAll, equals, hashCode, iterator, listIterator, swapRemoveByteadd, containsAll, containsAll, containsAny, containsAny, remove, toByteArrayclearAndTrim, trimadd, addElements, addElements, addIfAbsent, addIfPresent, forEachIndexed, get, getElements, remove, remove, set, sort, synchronize, synchronize, unmodifiable, unstableSortaddAll, addAll, containsAll, containsAny, containsAny, parallelPrimitiveStream, pour, toByteArrayarrayflatMap, asAsync, distinct, filter, flatMap, forEach, limit, map, peek, pourAsList, pourAsSet, repeat, sortedofpublic CopyOnWriteByteArrayList()
@Deprecated public CopyOnWriteByteArrayList(java.util.Collection<? extends java.lang.Byte> c)
c - the elements that should be added into the listpublic CopyOnWriteByteArrayList(ByteCollection c)
c - the elements that should be added into the listpublic CopyOnWriteByteArrayList(ByteList l)
l - the elements that should be added into the listpublic CopyOnWriteByteArrayList(byte... a)
a - the array that should be copiedpublic CopyOnWriteByteArrayList(byte[] a,
int length)
a - the array that should be copiedlength - the desired length that should be copiedpublic CopyOnWriteByteArrayList(byte[] a,
int offset,
int length)
a - the array that should be copiedoffset - the starting offset of where the array should be copied fromlength - the desired length that should be copiedjava.lang.IllegalStateException - if offset is smaller then 0java.lang.IllegalStateException - if the offset + length exceeds the array lengthpublic boolean add(byte e)
add in interface ByteCollectionadd in interface ByteListadd in class AbstractByteListe - element to be appended to this listCollection.add(E))List.add(Object)public void push(byte e)
push in interface ByteStacke - element to be appended to this StackStack.push(Object)public void add(int index,
byte e)
@Deprecated
public boolean addAll(int index,
java.util.Collection<? extends java.lang.Byte> c)
addAll in interface java.util.List<java.lang.Byte>index - the index where to append the elements toc - the elements to append to the listjava.lang.IndexOutOfBoundsException - if index is outside of the lists rangejava.lang.NullPointerException - if collection contains a null elementpublic boolean addAll(int index,
ByteCollection c)
addAll in interface ByteListindex - the index where to append the elements toc - the elements to append to the listjava.lang.IndexOutOfBoundsException - if index is outside of the lists rangeList.addAll(int, java.util.Collection)public boolean addAll(int index,
ByteList c)
public boolean addAll(byte[] e,
int offset,
int length)
ByteCollectionaddAll in interface ByteCollectione - the elements that should be addedoffset - where to start within the arraylength - how many elements of the array should be addedpublic void addElements(int from,
byte[] a,
int offset,
int length)
addElements in interface ByteListfrom - the index where to append the elements toa - the elements to append to the listoffset - where to start ino the arraylength - the amount of elements to insertjava.lang.IndexOutOfBoundsException - if index is outside of the lists rangepublic byte[] getElements(int from,
byte[] a,
int offset,
int length)
getElements in interface ByteListfrom - index where the list should be fetching elements froma - the array where the values should be inserted tooffset - the startIndex of where the array should be written tolength - the number of elements the values should be fetched fromjava.lang.NullPointerException - if the array is nulljava.lang.IndexOutOfBoundsException - if from is outside of the lists rangejava.lang.IllegalStateException - if offset or length are smaller then 0 or exceed the array lengthpublic void removeElements(int from,
int to)
removeElements in interface ByteListfrom - the start index of where the elements should be removed from (inclusive)to - the end index of where the elements should be removed to (exclusive)public byte[] extractElements(int from,
int to)
extractElements in interface ByteListfrom - the start index of where the elements should be fetched from (inclusive)to - the end index of where the elements should be fetched to (exclusive)public void fillBuffer(java.nio.ByteBuffer buffer)
ByteListfillBuffer in interface ByteListbuffer - where the data should be stored in.@Deprecated public boolean contains(java.lang.Object o)
contains in interface java.util.Collection<java.lang.Byte>contains in interface java.util.List<java.lang.Byte>contains in interface ByteCollectioncontains in interface ByteListcontains in class AbstractByteCollectiono - the element that is searched for@Deprecated public int indexOf(java.lang.Object o)
indexOf in interface java.util.List<java.lang.Byte>indexOf in interface ByteListindexOf in class AbstractByteListo - the element that is searched for@Deprecated public int lastIndexOf(java.lang.Object o)
lastIndexOf in interface java.util.List<java.lang.Byte>lastIndexOf in interface ByteListlastIndexOf in class AbstractByteListo - the element that is searched forpublic boolean contains(byte e)
contains in interface ByteCollectioncontains in class AbstractByteCollectione - the element that is searched for.public int indexOf(byte e)
indexOf in interface ByteListindexOf in class AbstractByteListe - the element that is searched forpublic int lastIndexOf(byte e)
lastIndexOf in interface ByteListlastIndexOf in class AbstractByteListe - the element that is searched forpublic void sort(ByteComparator c)
sort in interface ByteListc - the sorter of the elements, can be nullList.sort(java.util.Comparator),
ByteArrays.stableSort(byte[], ByteComparator)public void unstableSort(ByteComparator c)
unstableSort in interface ByteListc - the sorter of the elements, can be nullList.sort(java.util.Comparator),
ByteArrays.unstableSort(byte[], ByteComparator)public byte getByte(int index)
public byte peek(int index)
peek in interface ByteStackindex - of the element that should be providedjava.lang.ArrayIndexOutOfBoundsException - if the index is out of boundsStack.peek(int)public ByteListIterator listIterator(int index)
ByteListlistIterator in interface java.util.List<java.lang.Byte>listIterator in interface ByteListlistIterator in class AbstractByteListList.listIterator(int)public ByteList subList(int fromIndex, int toIndex)
ByteListsubList in interface java.util.List<java.lang.Byte>subList in interface ByteListsubList in class AbstractByteListList.subList(int, int)public void forEach(ByteConsumer action)
forEach in interface ByteIterableaction - The action to be performed for each elementjava.lang.NullPointerException - if the specified action is nullIterable.forEach(java.util.function.Consumer)The default implementation behaves as if:
for(int i = 0,m=data.length;i<m;i++)
action.accept(data[i]);
public <E> void forEach(E input,
ObjectByteConsumer<E> action)
ByteIterableforEach in interface ByteIterableE - the generic type of the Objectinput - the object that should be includedaction - The action to be performed for each elementpublic boolean matchesAny(BytePredicate filter)
ByteIterablematchesAny in interface ByteIterablefilter - that should be appliedpublic boolean matchesNone(BytePredicate filter)
ByteIterablematchesNone in interface ByteIterablefilter - that should be appliedpublic boolean matchesAll(BytePredicate filter)
ByteIterablematchesAll in interface ByteIterablefilter - that should be appliedpublic byte findFirst(BytePredicate filter)
ByteIterablefindFirst in interface ByteIterablefilter - that should be appliedpublic byte reduce(byte identity,
ByteByteUnaryOperator operator)
ByteIterablereduce in interface ByteIterableidentity - the start valueoperator - the operation that should be appliedpublic byte reduce(ByteByteUnaryOperator operator)
ByteIterablereduce in interface ByteIterableoperator - the operation that should be appliedpublic int count(BytePredicate filter)
ByteIterablecount in interface ByteIterablefilter - that should be appliedpublic byte set(int index,
byte e)
@Deprecated public void replaceAll(java.util.function.UnaryOperator<java.lang.Byte> o)
replaceAll in interface java.util.List<java.lang.Byte>replaceAll in interface ByteListo - the action to replace the valuesjava.lang.NullPointerException - if o is nullpublic void replaceBytes(java.util.function.IntUnaryOperator o)
replaceBytes in interface ByteListo - the action to replace the valuesjava.lang.NullPointerException - if o is nullpublic byte removeByte(int index)
removeByte in interface ByteListindex - the index of the element to fetchjava.lang.IndexOutOfBoundsException - if the index is out of rangeList.remove(int)public byte swapRemove(int index)
ByteListswapRemove in interface ByteListindex - the index of the element to be removedpublic boolean remByte(byte type)
remByte in interface ByteCollectionremByte in class AbstractByteCollectiontype - the element that is searched forCollection.remove(Object)public byte pop()
pop in interface ByteStackjava.lang.IndexOutOfBoundsException - if the index is out of rangeStack.pop()@Deprecated public boolean removeAll(java.util.Collection<?> c)
removeAll in interface java.util.Collection<java.lang.Byte>removeAll in interface java.util.List<java.lang.Byte>removeAll in class java.util.AbstractCollection<java.lang.Byte>c - the elements that should be removedjava.lang.NullPointerException - if the collection is null@Deprecated public boolean retainAll(java.util.Collection<?> c)
retainAll in interface java.util.Collection<java.lang.Byte>retainAll in interface java.util.List<java.lang.Byte>retainAll in class java.util.AbstractCollection<java.lang.Byte>c - the elements that should be kept. If empty, LongArrayList#clear is called.java.lang.NullPointerException - if the collection is null@Deprecated public boolean removeIf(java.util.function.Predicate<? super java.lang.Byte> filter)
removeIf in interface java.util.Collection<java.lang.Byte>removeIf in interface ByteCollectionfilter - the filter to remove elementspublic boolean removeAll(ByteCollection c)
removeAll in interface ByteCollectionremoveAll in class AbstractByteCollectionc - the elements that should be removedjava.lang.NullPointerException - if the collection is nullCollection.removeAll(Collection)public boolean removeAll(ByteCollection c, ByteConsumer r)
ByteCollectionremoveAll in interface ByteCollectionremoveAll in class AbstractByteCollectionc - the collection of elements that should be removedr - elements that got removedCollection.removeAll(Collection)public boolean retainAll(ByteCollection c)
retainAll in interface ByteCollectionretainAll in class AbstractByteCollectionc - the elements that should be kept. If empty, LongArrayList#clear is called.java.lang.NullPointerException - if the collection is nullCollection.retainAll(Collection)public boolean retainAll(ByteCollection c, ByteConsumer r)
ByteCollectionretainAll in interface ByteCollectionretainAll in class AbstractByteCollectionc - the collection of elements that should be keptr - elements that got removedCollection.retainAll(Collection)public boolean remIf(java.util.function.IntPredicate filter)
remIf in interface ByteCollectionfilter - the filter to remove elementsCollection.removeIf(Predicate)@Deprecated public java.lang.Object[] toArray()
toArray in interface java.util.Collection<java.lang.Byte>toArray in interface java.util.List<java.lang.Byte>toArray in class java.util.AbstractCollection<java.lang.Byte>@Deprecated public <E> E[] toArray(E[] a)
toArray in interface java.util.Collection<java.lang.Byte>toArray in interface java.util.List<java.lang.Byte>toArray in class java.util.AbstractCollection<java.lang.Byte>a - original array. If null a Object array with the right size is created. If to small the Array of the same type is created with the right sizepublic byte[] toByteArray(byte[] a)
AbstractByteCollectiontoByteArray in interface ByteCollectiontoByteArray in class AbstractByteCollectiona - array that the elements should be injected to. If null or to small a new array with the right size is createdCollection.toArray(Object[])public int size()
size in interface java.util.Collection<java.lang.Byte>size in interface java.util.List<java.lang.Byte>size in interface ByteStacksize in interface ISizeProvidersize in class java.util.AbstractCollection<java.lang.Byte>public void size(int size)
size in interface ByteListsize in class AbstractByteListsize - the requested amount of elements/room for elementspublic void clear()
public boolean trim(int size)
trim in interface ITrimmablesize - the requested trim size.public void clearAndTrim(int size)
clearAndTrim in interface ITrimmablesize - the amount of elements that should be allowedpublic CopyOnWriteByteArrayList copy()
ByteCollectioncopy in interface ByteCollectioncopy in interface ByteListcopy in class AbstractByteListpublic java.util.stream.IntStream primitiveStream()
primitiveStream in interface ByteCollectionpublic ByteSplititerator spliterator()
spliterator in interface java.lang.Iterable<java.lang.Byte>spliterator in interface java.util.Collection<java.lang.Byte>spliterator in interface java.util.List<java.lang.Byte>spliterator in interface ByteCollectionspliterator in interface ByteIterablespliterator in interface ByteList