public enum CompilerProblemSeverity extends Enum<CompilerProblemSeverity>
Enum Constant and Description |
---|
ERROR
The compiler problem is an error.
|
IGNORE
The compiler problem is ignored.
|
WARNING
The compiler problem is a warning.
|
Modifier and Type | Method and Description |
---|---|
static CompilerProblemSeverity |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CompilerProblemSeverity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompilerProblemSeverity ERROR
public static final CompilerProblemSeverity WARNING
public static final CompilerProblemSeverity IGNORE
public static CompilerProblemSeverity[] values()
for (CompilerProblemSeverity c : CompilerProblemSeverity.values()) System.out.println(c);
public static CompilerProblemSeverity 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 © 2016 The Apache Software Foundation. All rights reserved.