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