public static enum LogHandler.Handling extends Enum<LogHandler.Handling>
| Enum Constant and Description |
|---|
HANDLE_CONSUME
Will handle this message, and will consume it.
|
HANDLE_PASS |
NONE
Not handling these messages
|
| Modifier and Type | Method and Description |
|---|---|
static LogHandler.Handling |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LogHandler.Handling[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LogHandler.Handling HANDLE_PASS
public static final LogHandler.Handling HANDLE_CONSUME
public static final LogHandler.Handling NONE
public static LogHandler.Handling[] values()
for (LogHandler.Handling c : LogHandler.Handling.values()) System.out.println(c);
public static LogHandler.Handling 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 © 2021 SPF4J. All rights reserved.