Property Getters/Setters Summary | ||
---|---|---|
method | getCount() | |
Gets the number of elements actually contained in the collection.
|
||
method | getNextID() | |
method | setNextID(value) | |
The next available ID for new connections. | ||
method | get(index) | |
Gets the element at the specified index.
|
Method Summary | ||
---|---|---|
method | add(dataConnection) | |
Add the dataConnection in the collection.
|
||
method | clear() | |
Removes all elements from collection.
|
||
method | getDataConnection(ID) | |
Gets the element at the specified ID.
|
||
method | isExist(index) | |
Is exist item in the collection.
|
||
method | iterator() | |
Supports a simple iteration over a nongeneric collection.
|
||
method | remove(dataConnection) | |
Remove the dataConnection from the collection.
|
long getNextID() / setNextID(value)
int getCount()
DataConnection get(index)
index
- int add(dataConnection)
dataConnection: DataConnection
- remove(dataConnection)
dataConnection: DataConnection
- DataConnection getDataConnection(ID)
ID: long
- ID of DataConnectionIterator iterator()
boolean isExist(index)
index: int
- index of element.clear()