public interface RowCollection
Modifier and Type | Method and Description |
---|---|
boolean |
add(Row row)
Ensures that this row collection contains the specified row.
|
void |
clear()
Removes all of the rows from this row collection.
|
boolean |
contains(Row row)
Returns true if this row collection contains the specified row.
|
boolean |
isEmpty()
Returns true if this row collection contains no rows.
|
boolean |
remove(Row row)
Removes a single instance of the specified row from this row collection, if it is
present.
|
RowIterator |
rowIterator()
Returns an iterator over the rows in this row collection.
|
int |
size()
Returns the number of rows in this row collection.
|
boolean add(Row row) throws AxionException
row
- whose presence in this row collection is to be ensured.java.lang.UnsupportedOperationException
- add is not supported by this row
collection.AxionException
void clear() throws AxionException
java.lang.UnsupportedOperationException
- if the clear method is not
supported by this row collection.AxionException
boolean contains(Row row) throws AxionException
row
- whose presence in this row collection is to be tested.AxionException
boolean isEmpty()
RowIterator rowIterator() throws AxionException
AxionException
boolean remove(Row row) throws AxionException
row
- to be removed from this row collection, if present.java.lang.UnsupportedOperationException
- remove is not supported by this row
collection.AxionException
int size()