public enum VerboseLevel extends Enum<VerboseLevel>
| Enum Constant and Description |
|---|
BRIEF
Print out returned value of messages
|
SILENT
Nothing is written out except returned values
|
VERBOSE
Print out returned value of detail of messages
|
| Modifier and Type | Method and Description |
|---|---|
static VerboseLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VerboseLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VerboseLevel SILENT
public static final VerboseLevel BRIEF
public static final VerboseLevel VERBOSE
public static VerboseLevel[] values()
for (VerboseLevel c : VerboseLevel.values()) System.out.println(c);
public static VerboseLevel 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 © 2008–2019. All rights reserved.