public abstract class SerIterator
extends java.lang.Object
This is a plugin point that can handle Guava collections.
| Constructor | Description |
|---|---|
SerIterator() |
| Modifier and Type | Method | Description |
|---|---|---|
SerCategory |
category() |
Gets the category of iterable.
|
java.lang.Object |
column() |
The column.
|
java.lang.Class<?> |
columnType() |
Gets the type of the column.
|
int |
count() |
Gets the number of occurrences of this item.
|
int |
dimensionSize(int dimension) |
Gets the size of one dimension of the wrapped collection.
|
abstract boolean |
hasNext() |
Checks if there is a next item.
|
java.lang.Object |
key() |
The key.
|
java.lang.Class<?> |
keyType() |
Gets the type of the key.
|
abstract java.lang.String |
metaTypeName() |
Gets the meta type of the underlying.
|
abstract boolean |
metaTypeRequired() |
Checks if the meta type of the underlying is required.
|
abstract void |
next() |
Advances to the next item.
|
abstract int |
size() |
Gets the size of the wrapped collection.
|
abstract java.lang.Object |
value() |
The value.
|
java.lang.Object |
value(int row,
int column) |
The value at a row/column.
|
abstract java.lang.Class<?> |
valueType() |
Gets the type of the value.
|
abstract java.util.List<java.lang.Class<?>> |
valueTypeTypes() |
Gets the generic parameters of the value type.
|
public abstract java.lang.String metaTypeName()
public abstract boolean metaTypeRequired()
public int dimensionSize(int dimension)
dimension - the dimension, 0 for row, 1 for columnpublic abstract int size()
public SerCategory category()
public abstract boolean hasNext()
public abstract void next()
public int count()
public java.lang.Class<?> keyType()
public java.lang.Object key()
public java.lang.Class<?> columnType()
public java.lang.Object column()
public abstract java.lang.Class<?> valueType()
public abstract java.util.List<java.lang.Class<?>> valueTypeTypes()
public abstract java.lang.Object value()
public java.lang.Object value(int row,
int column)
row - the rowcolumn - the columnCopyright © 2007–2018 Joda.org. All rights reserved.