public interface ParameterTable extends Iterable<ParameterSet>
Modifier and Type | Interface and Description |
---|---|
static interface |
ParameterTable.Builder
A builder for
ParameterTable . |
static interface |
ParameterTable.Cursor
A cursor over
ParameterTable . |
Modifier and Type | Method and Description |
---|---|
Set<String> |
getAvailable()
Returns the all available parameter names in this set.
|
Set<String> |
getPartial()
Returns the partial parameter names in this set.
|
int |
getRowCount()
Returns the number of rows in this table.
|
List<ParameterSet> |
getRows()
Returns all rows in this table.
|
boolean |
isEmpty()
Returns whether this table is empty or not.
|
ParameterTable.Cursor |
newCursor()
Returns a new cursor for iterate each row.
|
forEach, iterator, spliterator
boolean isEmpty()
true
if this table is empty, otherwise false
int getRowCount()
0
if this table is emptyParameterTable.Cursor newCursor()
Set<String> getAvailable()
Set<String> getPartial()
List<ParameterSet> getRows()
Copyright © 2011–2019 Asakusa Framework Team. All rights reserved.