public class TByteLinkedList extends Objectimplements TByteList , Externalizable
serialVersionUID| Constructor and Description |
|---|
TByteLinkedList()
|
TByteLinkedList(byte no_entry_value)
|
TByteLinkedList(TByteList
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
add(byte val)
|
void |
add(byte[] vals)
|
void |
add(byte[] vals, int offset, int length)
|
boolean |
addAll(byte[] array)
|
boolean |
addAll(Collection
|
boolean |
addAll(TByteCollection
|
int |
binarySearch(byte value)
|
int |
binarySearch(byte value, int fromIndex, int toIndex)
|
void |
clear()
|
boolean |
contains(byte value)
|
boolean |
containsAll(byte[] array)
|
boolean |
containsAll(Collection
|
boolean |
containsAll(TByteCollection
|
boolean |
equals(Object
|
void |
fill(byte val)
|
void |
fill(int fromIndex, int toIndex, byte val)
|
boolean |
forEach(TByteProcedure
|
boolean |
forEachDescending(TByteProcedure
|
byte |
get(int offset)
|
com |
getLinkAt(int offset)
Returns the link at the given offset.
|
byte |
getNoEntryValue()
|
TByteList |
grep(TByteProcedure
|
int |
hashCode()
|
int |
indexOf(byte value)
|
int |
indexOf(int offset, byte value)
|
void |
insert(int offset, byte value)
|
void |
insert(int offset, byte[] values)
|
void |
insert(int offset, byte[] values, int valOffset, int len)
|
TByteList |
inverseGrep(TByteProcedure
|
boolean |
isEmpty()
|
TByteIterator |
iterator()
|
int |
lastIndexOf(byte value)
|
int |
lastIndexOf(int offset, byte value)
|
byte |
max()
|
byte |
min()
|
void |
readExternal(ObjectInput
|
boolean |
remove(byte value)
|
void |
remove(int offset, int length)
|
boolean |
removeAll(byte[] array)
|
boolean |
removeAll(Collection
|
boolean |
removeAll(TByteCollection
|
byte |
removeAt(int offset)
|
byte |
replace(int offset, byte val)
|
boolean |
retainAll(byte[] array)
|
boolean |
retainAll(Collection
|
boolean |
retainAll(TByteCollection
|
void |
reverse()
|
void |
reverse(int from, int to)
|
byte |
set(int offset, byte val)
|
void |
set(int offset, byte[] values)
|
void |
set(int offset, byte[] values, int valOffset, int length)
|
void |
shuffle(Random
|
int |
size()
|
void |
sort()
|
void |
sort(int fromIndex, int toIndex)
|
TByteList |
subList(int begin, int end)
|
byte |
sum()
|
byte[] |
toArray()
|
byte[] |
toArray(byte[] dest)
|
byte[] |
toArray(byte[] dest, int offset, int len)
|
byte[] |
toArray(byte[] dest, int source_pos, int dest_pos, int len)
|
byte[] |
toArray(int offset, int len)
|
String |
toString()
|
void |
transformValues(TByteFunction
|
void |
writeExternal(ObjectOutput
|
public TByteLinkedList()
public TByteLinkedList(byte no_entry_value)
public TByteLinkedList(TByteListlist)
public byte getNoEntryValue()
public int size()
public boolean isEmpty()
public boolean add(byte val)
public void add(byte[] vals)
public void add(byte[] vals,
int offset,
int length)
public void insert(int offset,
byte value)
public void insert(int offset,
byte[] values)
public void insert(int offset,
byte[] values,
int valOffset,
int len)
public byte get(int offset)
public com.slimjars .dist .gnu .trove .list .linked .TByteLinkedList .TByteLink getLinkAt(int offset)
offset - of the link
public byte set(int offset,
byte val)
public void set(int offset,
byte[] values)
public void set(int offset,
byte[] values,
int valOffset,
int length)
public byte replace(int offset,
byte val)
public void clear()
public boolean remove(byte value)
public boolean containsAll(Collection<?> collection)
public boolean containsAll(TByteCollectioncollection)
public boolean containsAll(byte[] array)
public boolean addAll(Collection<? extends Byte > collection)
public boolean addAll(TByteCollectioncollection)
public boolean addAll(byte[] array)
public boolean retainAll(Collection<?> collection)
public boolean retainAll(TByteCollectioncollection)
public boolean retainAll(byte[] array)
public boolean removeAll(Collection<?> collection)
public boolean removeAll(TByteCollectioncollection)
public boolean removeAll(byte[] array)
public byte removeAt(int offset)
public void remove(int offset,
int length)
public void transformValues(TByteFunctionfunction)
public void reverse()
public void reverse(int from,
int to)
public void shuffle(Randomrand)
public TByteListsubList(int begin, int end)
public byte[] toArray()
public byte[] toArray(int offset,
int len)
public byte[] toArray(byte[] dest)
public byte[] toArray(byte[] dest,
int offset,
int len)
public byte[] toArray(byte[] dest,
int source_pos,
int dest_pos,
int len)
public boolean forEach(TByteProcedureprocedure)
public boolean forEachDescending(TByteProcedureprocedure)
public void sort()
public void sort(int fromIndex,
int toIndex)
public void fill(byte val)
public void fill(int fromIndex,
int toIndex,
byte val)
public int binarySearch(byte value)
public int binarySearch(byte value,
int fromIndex,
int toIndex)
public int indexOf(byte value)
public int indexOf(int offset,
byte value)
public int lastIndexOf(byte value)
public int lastIndexOf(int offset,
byte value)
public boolean contains(byte value)
public TByteIteratoriterator()
public TByteListgrep(TByteProcedure condition)
public TByteListinverseGrep(TByteProcedure condition)
public byte max()
public byte min()
public byte sum()
public void writeExternal(ObjectOutputout) throws IOException
writeExternal in interface
Externalizable
IOException
public void readExternal(ObjectInputin) throws IOException , ClassNotFoundException
readExternal in interface
Externalizable
IOException
ClassNotFoundException
public boolean equals(Objectother)
public int hashCode()
public StringtoString()