Property Getters/Setters Summary | ||
---|---|---|
method | getCount() | |
Gets the number of elements actually contained in the collection.
|
||
method | get(index) | |
Gets the element at the specified index.
|
Method Summary | ||
---|---|---|
method | add(item) | |
Add the Para object in the collection.
|
||
method | clear() | |
Removes all elements from collection.
|
||
method | getPara(IX) | |
Gets the element at the specified index IX. Returns Null if the element is not exist.
|
||
method | isExist(index) | |
Is exist item in the collection.
|
||
method | iterator() | |
Supports a simple iteration over a nongeneric collection.
|
||
method | remove(item) | |
Remove the Para object from the collection.
|
int getCount()
int add(item)
item: Para
- remove(item)
item: Para
- Para getPara(IX)
IX: int
- Iterator iterator()
boolean isExist(index)
index: int
- index of element.clear()