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