public enum LoggerAction extends Enum<LoggerAction>
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static LoggerAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LoggerAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LoggerAction FORCE
public static final LoggerAction REDIRECT
public static final LoggerAction IGNORE
public static final LoggerAction FAIL
public static LoggerAction[] values()
for (LoggerAction c : LoggerAction.values()) System.out.println(c);
public static LoggerAction 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 nullpublic String toString()
toString in class Enum<LoggerAction>Copyright © 2016–2019 The Apache Software Foundation. All rights reserved.