public enum CompilerMessageSeverity extends java.lang.Enum<CompilerMessageSeverity>
Enum Constant and Description |
---|
ERROR |
EXCEPTION |
INFO |
LOGGING |
OUTPUT |
WARNING |
Modifier and Type | Field and Description |
---|---|
static java.util.EnumSet<CompilerMessageSeverity> |
ERRORS |
static java.util.EnumSet<CompilerMessageSeverity> |
VERBOSE |
Modifier and Type | Method and Description |
---|---|
static CompilerMessageSeverity |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CompilerMessageSeverity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompilerMessageSeverity INFO
public static final CompilerMessageSeverity ERROR
public static final CompilerMessageSeverity WARNING
public static final CompilerMessageSeverity EXCEPTION
public static final CompilerMessageSeverity LOGGING
public static final CompilerMessageSeverity OUTPUT
public static final java.util.EnumSet<CompilerMessageSeverity> ERRORS
public static final java.util.EnumSet<CompilerMessageSeverity> VERBOSE
public static CompilerMessageSeverity[] values()
for (CompilerMessageSeverity c : CompilerMessageSeverity.values()) System.out.println(c);
public static CompilerMessageSeverity 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