public static enum CompilerConfiguration.DebugLevel extends Enum<CompilerConfiguration.DebugLevel>
Enum Constant and Description |
---|
DISABLED
No debugging information.
|
NORMAL
Normal debugging information.
|
VERBOSE
Verbose debugging information.
|
Modifier and Type | Method and Description |
---|---|
static CompilerConfiguration.DebugLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CompilerConfiguration.DebugLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompilerConfiguration.DebugLevel DISABLED
public static final CompilerConfiguration.DebugLevel NORMAL
public static final CompilerConfiguration.DebugLevel VERBOSE
public static CompilerConfiguration.DebugLevel[] values()
for (CompilerConfiguration.DebugLevel c : CompilerConfiguration.DebugLevel.values()) System.out.println(c);
public static CompilerConfiguration.DebugLevel 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 © 2011–2019 Asakusa Framework Team. All rights reserved.