public class DataColumnCollection
Property Getters/Setters Summary | ||
---|---|---|
int | getCount() | |
Gets the number of elements actually contained in the collection.
|
||
int | getSortAsc() | |
void | setSortAsc(intvalue) | |
Whether to sort the SortColumn column in ascending (1) or descending (0) order. The value of the property is BOOL integer constant. | ||
java.lang.String | getSortColumn() | |
void | setSortColumn(java.lang.Stringvalue) | |
The column on which to sort the data. | ||
DataColumn | get(int index) | |
Gets the element at the specified index.
|
Method Summary | ||
---|---|---|
int | add(DataColumn dataColumn) | |
Add the dataColumn 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(DataColumn dataColumn) | |
Remove the dataColumn from the collection.
|
public java.lang.String getSortColumn() / public void setSortColumn(java.lang.String value)
public int getSortAsc() / public void setSortAsc(int value)
public int getCount()
public DataColumn get(int index)
index
- public int add(DataColumn dataColumn)
dataColumn
- public void remove(DataColumn dataColumn)
dataColumn
- public java.util.Iterator iterator()
public boolean isExist(int index)
index
- index of element.public void clear()