public class TFloatLinkedList extends Objectimplements TFloatList , Externalizable
serialVersionUID| Constructor and Description |
|---|
TFloatLinkedList()
|
TFloatLinkedList(float no_entry_value)
|
TFloatLinkedList(TFloatList
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
add(float val)
|
void |
add(float[] vals)
|
void |
add(float[] vals, int offset, int length)
|
boolean |
addAll(Collection
|
boolean |
addAll(float[] array)
|
boolean |
addAll(TFloatCollection
|
int |
binarySearch(float value)
|
int |
binarySearch(float value, int fromIndex, int toIndex)
|
void |
clear()
|
boolean |
contains(float value)
|
boolean |
containsAll(Collection
|
boolean |
containsAll(float[] array)
|
boolean |
containsAll(TFloatCollection
|
boolean |
equals(Object
|
void |
fill(float val)
|
void |
fill(int fromIndex, int toIndex, float val)
|
boolean |
forEach(TFloatProcedure
|
boolean |
forEachDescending(TFloatProcedure
|
float |
get(int offset)
|
com |
getLinkAt(int offset)
Returns the link at the given offset.
|
float |
getNoEntryValue()
|
TFloatList |
grep(TFloatProcedure
|
int |
hashCode()
|
int |
indexOf(float value)
|
int |
indexOf(int offset, float value)
|
void |
insert(int offset, float value)
|
void |
insert(int offset, float[] values)
|
void |
insert(int offset, float[] values, int valOffset, int len)
|
TFloatList |
inverseGrep(TFloatProcedure
|
boolean |
isEmpty()
|
TFloatIterator |
iterator()
|
int |
lastIndexOf(float value)
|
int |
lastIndexOf(int offset, float value)
|
float |
max()
|
float |
min()
|
void |
readExternal(ObjectInput
|
boolean |
remove(float value)
|
void |
remove(int offset, int length)
|
boolean |
removeAll(Collection
|
boolean |
removeAll(float[] array)
|
boolean |
removeAll(TFloatCollection
|
float |
removeAt(int offset)
|
float |
replace(int offset, float val)
|
boolean |
retainAll(Collection
|
boolean |
retainAll(float[] array)
|
boolean |
retainAll(TFloatCollection
|
void |
reverse()
|
void |
reverse(int from, int to)
|
float |
set(int offset, float val)
|
void |
set(int offset, float[] values)
|
void |
set(int offset, float[] values, int valOffset, int length)
|
void |
shuffle(Random
|
int |
size()
|
void |
sort()
|
void |
sort(int fromIndex, int toIndex)
|
TFloatList |
subList(int begin, int end)
|
float |
sum()
|
float[] |
toArray()
|
float[] |
toArray(float[] dest)
|
float[] |
toArray(float[] dest, int offset, int len)
|
float[] |
toArray(float[] dest, int source_pos, int dest_pos, int len)
|
float[] |
toArray(int offset, int len)
|
String |
toString()
|
void |
transformValues(TFloatFunction
|
void |
writeExternal(ObjectOutput
|
public TFloatLinkedList()
public TFloatLinkedList(float no_entry_value)
public TFloatLinkedList(TFloatListlist)
public float getNoEntryValue()
public int size()
public boolean isEmpty()
public boolean add(float val)
public void add(float[] vals)
public void add(float[] vals,
int offset,
int length)
public void insert(int offset,
float value)
public void insert(int offset,
float[] values)
public void insert(int offset,
float[] values,
int valOffset,
int len)
public float get(int offset)
public com.slimjars .dist .gnu .trove .list .linked .TFloatLinkedList .TFloatLink getLinkAt(int offset)
offset - of the link
public float set(int offset,
float val)
public void set(int offset,
float[] values)
public void set(int offset,
float[] values,
int valOffset,
int length)
public float replace(int offset,
float val)
public void clear()
public boolean remove(float value)
public boolean containsAll(Collection<?> collection)
public boolean containsAll(TFloatCollectioncollection)
public boolean containsAll(float[] array)
public boolean addAll(Collection<? extends Float > collection)
public boolean addAll(TFloatCollectioncollection)
public boolean addAll(float[] array)
public boolean retainAll(Collection<?> collection)
public boolean retainAll(TFloatCollectioncollection)
public boolean retainAll(float[] array)
public boolean removeAll(Collection<?> collection)
public boolean removeAll(TFloatCollectioncollection)
public boolean removeAll(float[] array)
public float removeAt(int offset)
public void remove(int offset,
int length)
public void transformValues(TFloatFunctionfunction)
public void reverse()
public void reverse(int from,
int to)
public void shuffle(Randomrand)
public TFloatListsubList(int begin, int end)
public float[] toArray()
public float[] toArray(int offset,
int len)
public float[] toArray(float[] dest)
public float[] toArray(float[] dest,
int offset,
int len)
public float[] toArray(float[] dest,
int source_pos,
int dest_pos,
int len)
public boolean forEach(TFloatProcedureprocedure)
public boolean forEachDescending(TFloatProcedureprocedure)
public void sort()
public void sort(int fromIndex,
int toIndex)
public void fill(float val)
public void fill(int fromIndex,
int toIndex,
float val)
public int binarySearch(float value)
public int binarySearch(float value,
int fromIndex,
int toIndex)
public int indexOf(float value)
public int indexOf(int offset,
float value)
public int lastIndexOf(float value)
public int lastIndexOf(int offset,
float value)
public boolean contains(float value)
public TFloatIteratoriterator()
public TFloatListgrep(TFloatProcedure condition)
public TFloatListinverseGrep(TFloatProcedure condition)
public float max()
public float min()
public float 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()