|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<Table.State>
org.whattf.checker.table.Table.State
private static enum Table.State
An enumeration for keeping track of the parsing state of a table.
| Enum Constant Summary | |
|---|---|
IN_CELL_IN_IMPLICIT_ROW_GROUP
A cell inside an implicit row group is open. |
|
IN_CELL_IN_ROW_GROUP
A cell inside a row inside an explicit row group is open. |
|
IN_COL_IN_COLGROUP
A column inside a column group is open. |
|
IN_COL_IN_IMPLICIT_GROUP
A column that is a child of table is open. |
|
IN_COLGROUP
A column group is open. |
|
IN_IMPLICIT_ROW_GROUP
The table itself is the currently open element, but an implicit row group been started by previous rows. |
|
IN_ROW_GROUP
The open element is an explicit row group. |
|
IN_ROW_IN_IMPLICIT_ROW_GROUP
A row in an implicit row group is open. |
|
IN_ROW_IN_ROW_GROUP
A row in a an explicit row group is open. |
|
IN_TABLE_AT_POTENTIAL_ROW_GROUP_START
The table element is the open element and rows have been seen. |
|
IN_TABLE_AT_START
The table element start has been seen. |
|
IN_TABLE_COLS_SEEN
The table itself is the currently open element. |
|
| Method Summary | |
|---|---|
static Table.State |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Table.State[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final Table.State IN_TABLE_AT_START
public static final Table.State IN_TABLE_AT_POTENTIAL_ROW_GROUP_START
public static final Table.State IN_COLGROUP
public static final Table.State IN_COL_IN_COLGROUP
public static final Table.State IN_COL_IN_IMPLICIT_GROUP
public static final Table.State IN_ROW_GROUP
public static final Table.State IN_ROW_IN_ROW_GROUP
public static final Table.State IN_CELL_IN_ROW_GROUP
public static final Table.State IN_ROW_IN_IMPLICIT_ROW_GROUP
public static final Table.State IN_IMPLICIT_ROW_GROUP
public static final Table.State IN_CELL_IN_IMPLICIT_ROW_GROUP
public static final Table.State IN_TABLE_COLS_SEEN
| Method Detail |
|---|
public static final Table.State[] values()
for(Table.State c : Table.State.values())
System.out.println(c);
public static Table.State valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||