java.lang.ObjectCollection
com.aspose.diagram.DataConnectionCollection
public class DataConnectionCollection
| Property Getters/Setters Summary | ||
|---|---|---|
int | getCount() | → inherited from Collection
|
| Gets the number of elements actually contained in the collection. | ||
long | getNextID() | |
void | setNextID(long) | |
| The next available ID for new connections. | ||
DataConnection | get(int) | |
| Gets the element at the specified index. | ||
| Method Summary | ||
|---|---|---|
int | add(DataConnection dataConnection) | |
| Add the dataConnection in the collection. | ||
void | clear() | → inherited from Collection
|
| Removes all elements from collection. | ||
DataConnection | getDataConnection(long ID) | |
| Gets the element at the specified ID. | ||
boolean | isExist(int index) | → inherited from Collection
|
| Is exist item in the collection. | ||
java.util.Iterator | iterator() | → inherited from Collection
|
| Supports a simple iteration over a nongeneric collection. | ||
void | remove(DataConnection dataConnection) | |
| Remove the dataConnection from the collection. | ||
| Property Getters/Setters Detail |
|---|
getNextID/setNextID | |
public long getNextID() / public void setNextID(long value) | |
getCount | → inherited from Collection
|
public int getCount() | |
get | |
public DataConnection get(int index) | |
index - | Method Detail |
|---|
add | |
public int add(DataConnection dataConnection) | |
dataConnection - remove | |
public void remove(DataConnection dataConnection) | |
dataConnection - getDataConnection | |
public DataConnection getDataConnection(long ID) | |
ID - ID of DataConnectioniterator | → inherited from Collection
|
public java.util.Iterator iterator() | |
isExist | → inherited from Collection
|
public boolean isExist(int index) | |
index - index of element.clear | → inherited from Collection
|
public void clear() | |