public static enum Logging.Severity extends java.lang.Enum<Logging.Severity>
| Enum Constant and Description |
|---|
LS_ERROR |
LS_INFO |
LS_NONE |
LS_VERBOSE |
LS_WARNING |
| Modifier and Type | Method and Description |
|---|---|
static Logging.Severity |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Logging.Severity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Logging.Severity LS_VERBOSE
public static final Logging.Severity LS_INFO
public static final Logging.Severity LS_WARNING
public static final Logging.Severity LS_ERROR
public static final Logging.Severity LS_NONE
public static Logging.Severity[] values()
for (Logging.Severity c : Logging.Severity.values()) System.out.println(c);
public static Logging.Severity 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