public static enum HtmlTable.CellReaderStrategy extends java.lang.Enum<HtmlTable.CellReaderStrategy>
Enum Constant and Description |
---|
GET_TEXT |
INNER_TEXT_ATTRIBUTE |
OUTER_TEXT_ATTRIBUTE |
TEXT_CONTENT_ATTRIBUTE |
Modifier and Type | Method and Description |
---|---|
static HtmlTable.CellReaderStrategy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HtmlTable.CellReaderStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HtmlTable.CellReaderStrategy GET_TEXT
public static final HtmlTable.CellReaderStrategy TEXT_CONTENT_ATTRIBUTE
public static final HtmlTable.CellReaderStrategy INNER_TEXT_ATTRIBUTE
public static final HtmlTable.CellReaderStrategy OUTER_TEXT_ATTRIBUTE
public static HtmlTable.CellReaderStrategy[] values()
for (HtmlTable.CellReaderStrategy c : HtmlTable.CellReaderStrategy.values()) System.out.println(c);
public static HtmlTable.CellReaderStrategy 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