public class TCharLinkedList extends Objectimplements TCharList , Externalizable
serialVersionUID| Constructor and Description |
|---|
TCharLinkedList()
|
TCharLinkedList(char no_entry_value)
|
TCharLinkedList(TCharList
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
add(char val)
|
void |
add(char[] vals)
|
void |
add(char[] vals, int offset, int length)
|
boolean |
addAll(char[] array)
|
boolean |
addAll(Collection
|
boolean |
addAll(TCharCollection
|
int |
binarySearch(char value)
|
int |
binarySearch(char value, int fromIndex, int toIndex)
|
void |
clear()
|
boolean |
contains(char value)
|
boolean |
containsAll(char[] array)
|
boolean |
containsAll(Collection
|
boolean |
containsAll(TCharCollection
|
boolean |
equals(Object
|
void |
fill(char val)
|
void |
fill(int fromIndex, int toIndex, char val)
|
boolean |
forEach(TCharProcedure
|
boolean |
forEachDescending(TCharProcedure
|
char |
get(int offset)
|
com |
getLinkAt(int offset)
Returns the link at the given offset.
|
char |
getNoEntryValue()
|
TCharList |
grep(TCharProcedure
|
int |
hashCode()
|
int |
indexOf(char value)
|
int |
indexOf(int offset, char value)
|
void |
insert(int offset, char value)
|
void |
insert(int offset, char[] values)
|
void |
insert(int offset, char[] values, int valOffset, int len)
|
TCharList |
inverseGrep(TCharProcedure
|
boolean |
isEmpty()
|
TCharIterator |
iterator()
|
int |
lastIndexOf(char value)
|
int |
lastIndexOf(int offset, char value)
|
char |
max()
|
char |
min()
|
void |
readExternal(ObjectInput
|
boolean |
remove(char value)
|
void |
remove(int offset, int length)
|
boolean |
removeAll(char[] array)
|
boolean |
removeAll(Collection
|
boolean |
removeAll(TCharCollection
|
char |
removeAt(int offset)
|
char |
replace(int offset, char val)
|
boolean |
retainAll(char[] array)
|
boolean |
retainAll(Collection
|
boolean |
retainAll(TCharCollection
|
void |
reverse()
|
void |
reverse(int from, int to)
|
char |
set(int offset, char val)
|
void |
set(int offset, char[] values)
|
void |
set(int offset, char[] values, int valOffset, int length)
|
void |
shuffle(Random
|
int |
size()
|
void |
sort()
|
void |
sort(int fromIndex, int toIndex)
|
TCharList |
subList(int begin, int end)
|
char |
sum()
|
char[] |
toArray()
|
char[] |
toArray(char[] dest)
|
char[] |
toArray(char[] dest, int offset, int len)
|
char[] |
toArray(char[] dest, int source_pos, int dest_pos, int len)
|
char[] |
toArray(int offset, int len)
|
String |
toString()
|
void |
transformValues(TCharFunction
|
void |
writeExternal(ObjectOutput
|
public TCharLinkedList()
public TCharLinkedList(char no_entry_value)
public TCharLinkedList(TCharListlist)
public char getNoEntryValue()
public int size()
public boolean isEmpty()
public boolean add(char val)
public void add(char[] vals)
public void add(char[] vals,
int offset,
int length)
public void insert(int offset,
char value)
public void insert(int offset,
char[] values)
public void insert(int offset,
char[] values,
int valOffset,
int len)
public char get(int offset)
public com.slimjars .dist .gnu .trove .list .linked .TCharLinkedList .TCharLink getLinkAt(int offset)
offset - of the link
public char set(int offset,
char val)
public void set(int offset,
char[] values)
public void set(int offset,
char[] values,
int valOffset,
int length)
public char replace(int offset,
char val)
public void clear()
public boolean remove(char value)
public boolean containsAll(Collection<?> collection)
public boolean containsAll(TCharCollectioncollection)
public boolean containsAll(char[] array)
public boolean addAll(Collection<? extends Character > collection)
public boolean addAll(TCharCollectioncollection)
public boolean addAll(char[] array)
public boolean retainAll(Collection<?> collection)
public boolean retainAll(TCharCollectioncollection)
public boolean retainAll(char[] array)
public boolean removeAll(Collection<?> collection)
public boolean removeAll(TCharCollectioncollection)
public boolean removeAll(char[] array)
public char removeAt(int offset)
public void remove(int offset,
int length)
public void transformValues(TCharFunctionfunction)
public void reverse()
public void reverse(int from,
int to)
public void shuffle(Randomrand)
public TCharListsubList(int begin, int end)
public char[] toArray()
public char[] toArray(int offset,
int len)
public char[] toArray(char[] dest)
public char[] toArray(char[] dest,
int offset,
int len)
public char[] toArray(char[] dest,
int source_pos,
int dest_pos,
int len)
public boolean forEach(TCharProcedureprocedure)
public boolean forEachDescending(TCharProcedureprocedure)
public void sort()
public void sort(int fromIndex,
int toIndex)
public void fill(char val)
public void fill(int fromIndex,
int toIndex,
char val)
public int binarySearch(char value)
public int binarySearch(char value,
int fromIndex,
int toIndex)
public int indexOf(char value)
public int indexOf(int offset,
char value)
public int lastIndexOf(char value)
public int lastIndexOf(int offset,
char value)
public boolean contains(char value)
public TCharIteratoriterator()
public TCharListgrep(TCharProcedure condition)
public TCharListinverseGrep(TCharProcedure condition)
public char max()
public char min()
public char 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(Objecto)
public int hashCode()
public StringtoString()