Enum Constant and Description |
---|
Data
A data cell, as defined by using <td> tags
|
Head
A header cell, as defined by using <th> tags
|
Span
A cell that is the result of a span from another cell (eg the second column cell for a colspan=2 cell)
|
Modifier and Type | Method and Description |
---|---|
static Cell.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Cell.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Cell.Type Data
public static final Cell.Type Head
public static final Cell.Type Span
public static Cell.Type[] values()
for (Cell.Type c : Cell.Type.values()) System.out.println(c);
public static Cell.Type valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null