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