public static enum EmacsProcessingHandler.Result extends java.lang.Enum<EmacsProcessingHandler.Result>
| Enum Constant and Description |
|---|
CONTINUE
Proceed to the next handler in a chain.
|
STOP
Stop current processing as everything is done by the current handler
|
| Modifier and Type | Method and Description |
|---|---|
static EmacsProcessingHandler.Result |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EmacsProcessingHandler.Result[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EmacsProcessingHandler.Result CONTINUE
public static final EmacsProcessingHandler.Result STOP
public static EmacsProcessingHandler.Result[] values()
for (EmacsProcessingHandler.Result c : EmacsProcessingHandler.Result.values()) System.out.println(c);
public static EmacsProcessingHandler.Result 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