public enum TextProcessingResult extends Enum<TextProcessingResult>
| Enum Constant and Description |
|---|
ACCEPTED
Text was processed, events were created and sent
|
DELAYED_DECISION
Text was not processed, processing will be done later
|
NONE
Indefinite
|
REJECTED
Text was not processed
|
SUBFILTER
Text was processed, subfilter was called and individual events sent
|
| Modifier and Type | Method and Description |
|---|---|
static TextProcessingResult |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TextProcessingResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TextProcessingResult NONE
public static final TextProcessingResult REJECTED
public static final TextProcessingResult ACCEPTED
public static final TextProcessingResult SUBFILTER
public static final TextProcessingResult DELAYED_DECISION
public static TextProcessingResult[] values()
for (TextProcessingResult c : TextProcessingResult.values()) System.out.println(c);
public static TextProcessingResult 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 © 2019. All rights reserved.