public abstract class ListDouble extends Object implements ListNumber, CollectionDouble
doubles.| Constructor and Description |
|---|
ListDouble() |
| Modifier and Type | Method and Description |
|---|---|
static ListDouble |
concatenate(ListNumber... lists)
Concatenates a several lists of numbers into a single list
|
boolean |
equals(Object obj) |
byte |
getByte(int index)
Returns the element at the specified position in this list casted to a byte.
|
float |
getFloat(int index)
Returns the element at the specified position in this list casted to a float.
|
int |
getInt(int index)
Returns the element at the specified position in this list casted to an int.
|
long |
getLong(int index)
Returns the element at the specified position in this list casted to a long.
|
short |
getShort(int index)
Returns the element at the specified position in this list casted to a short.
|
int |
hashCode() |
IteratorDouble |
iterator()
Returns an iterator over the elements of the collection.
|
void |
setByte(int index,
byte value)
Changes the element at the specified position, casting to the internal
representation.
|
void |
setDouble(int index,
double value)
Changes the element at the specified position, casting to the internal
representation.
|
void |
setFloat(int index,
float value)
Changes the element at the specified position, casting to the internal
representation.
|
void |
setInt(int index,
int value)
Changes the element at the specified position, casting to the internal
representation.
|
void |
setLong(int index,
long value)
Changes the element at the specified position, casting to the internal
representation.
|
void |
setShort(int index,
short value)
Changes the element at the specified position, casting to the internal
representation.
|
String |
toString() |
clone, finalize, getClass, notify, notifyAll, wait, wait, waitgetDoublesizepublic IteratorDouble iterator()
CollectionNumberiterator in interface CollectionDoubleiterator in interface CollectionNumberpublic float getFloat(int index)
ListNumbergetFloat in interface ListNumberindex - position of the element to returnpublic long getLong(int index)
ListNumbergetLong in interface ListNumberindex - position of the element to returnpublic int getInt(int index)
ListNumbergetInt in interface ListNumberindex - position of the element to returnpublic short getShort(int index)
ListNumbergetShort in interface ListNumberindex - position of the element to returnpublic byte getByte(int index)
ListNumbergetByte in interface ListNumberindex - position of the element to returnpublic void setDouble(int index,
double value)
ListNumbersetDouble in interface ListNumberindex - position of the element to changevalue - the new valuepublic void setFloat(int index,
float value)
ListNumbersetFloat in interface ListNumberindex - position of the element to changevalue - the new valuepublic void setLong(int index,
long value)
ListNumbersetLong in interface ListNumberindex - position of the element to changevalue - the new valuepublic void setInt(int index,
int value)
ListNumbersetInt in interface ListNumberindex - position of the element to changevalue - the new valuepublic void setShort(int index,
short value)
ListNumbersetShort in interface ListNumberindex - position of the element to changevalue - the new valuepublic void setByte(int index,
byte value)
ListNumbersetByte in interface ListNumberindex - position of the element to changevalue - the new valuepublic static ListDouble concatenate(ListNumber... lists)
lists - the lists to concatenateCopyright © 2015. All rights reserved.