public enum CompilerProblemClassification extends Enum<CompilerProblemClassification>
ProblemClassification
Enum Constant and Description |
---|
DEFAULT
The compiler problem is of the category implied by its severity
i.e.
|
INTERNAL_ERROR |
SYNTAX_ERROR |
Modifier and Type | Method and Description |
---|---|
static CompilerProblemClassification |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CompilerProblemClassification[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompilerProblemClassification DEFAULT
public static final CompilerProblemClassification SYNTAX_ERROR
public static final CompilerProblemClassification INTERNAL_ERROR
public static CompilerProblemClassification[] values()
for (CompilerProblemClassification c : CompilerProblemClassification.values()) System.out.println(c);
public static CompilerProblemClassification 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.