public enum CompilerLevel extends java.lang.Enum<CompilerLevel>
-vv
switch),
verbose (-v
switch), regular (no switch), quiet (-q
switch), or absolutely
no log messages at all (no CLI equivalent).Enum Constant and Description |
---|
MUTE |
QUIET |
REGULAR |
VERBOSE |
VERY_VERBOSE |
Modifier and Type | Method and Description |
---|---|
static CompilerLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CompilerLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompilerLevel VERY_VERBOSE
public static final CompilerLevel VERBOSE
public static final CompilerLevel REGULAR
public static final CompilerLevel QUIET
public static final CompilerLevel MUTE
public static CompilerLevel[] values()
for (CompilerLevel c : CompilerLevel.values()) System.out.println(c);
public static CompilerLevel 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