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