public enum TableRowType extends Enum<TableRowType>
The type of a table row of type rule.
| Enum Constant and Description |
|---|
CONTENT
A row with content.
|
RULE
A row representing a rule.
|
UNKNOWN
A row without a type.
|
| Modifier and Type | Method and Description |
|---|---|
static TableRowType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TableRowType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TableRowType UNKNOWN
A row without a type.
public static final TableRowType RULE
A row representing a rule.
public static final TableRowType CONTENT
A row with content.
public static TableRowType[] values()
for (TableRowType c : TableRowType.values()) System.out.println(c);
public static TableRowType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2016–2017. All rights reserved.