public enum DetailLevel extends Enum<DetailLevel>
| Modifier and Type | Method and Description |
|---|---|
static DetailLevel |
valueForString(String value) |
static DetailLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DetailLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DetailLevel OFF
public static final DetailLevel TERSE
public static final DetailLevel VERBOSE
public static DetailLevel[] values()
for (DetailLevel c : DetailLevel.values()) System.out.println(c);
public static DetailLevel 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 static DetailLevel valueForString(String value)