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