public class FloatPointNumCollection
Constructor Summary |
---|
FloatPointNumCollection()
Constructor. |
Property Getters/Setters Summary | ||
---|---|---|
int | getCount() | |
Gets the number of elements actually contained in the collection.
|
||
double | get(int index) | |
Gets the element at the specified index.
|
Method Summary | ||
---|---|---|
int | add(double number) | |
Add the doubleing point number in the collection.
|
||
void | clear() | |
Removes all elements from collection.
|
||
boolean | isExist(int index) | |
Is exist item in the collection.
|
||
java.util.Iterator | iterator() | |
Supports a simple iteration over a nongeneric collection.
|
||
void | remove(double number) | |
Remove the doubleing point number from the collection.
|
public int getCount()
public double get(int index)
index
- public int add(double number)
number
- public void remove(double number)
number
- public java.util.Iterator iterator()
public boolean isExist(int index)
index
- index of element.public void clear()