private static enum SimpleHtmlCleaner.States extends Enum<SimpleHtmlCleaner.States>
| Enum Constant and Description |
|---|
ENCODED_CHAR_STARTED |
NORMAL_TEXT |
TAG_STARTED |
| Modifier and Type | Method and Description |
|---|---|
static SimpleHtmlCleaner.States |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SimpleHtmlCleaner.States[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SimpleHtmlCleaner.States NORMAL_TEXT
public static final SimpleHtmlCleaner.States TAG_STARTED
public static final SimpleHtmlCleaner.States ENCODED_CHAR_STARTED
public static SimpleHtmlCleaner.States[] values()
for (SimpleHtmlCleaner.States c : SimpleHtmlCleaner.States.values()) System.out.println(c);
public static SimpleHtmlCleaner.States 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 © 2015–2020. All rights reserved.