Serializable
, Comparable<AnalysisError.Kind>
public static enum AnalysisError.Kind extends Enum<AnalysisError.Kind>
Enum Constant | Description |
---|---|
CHECK_ERROR |
|
PARSE_ERROR |
|
SE_ERROR |
|
SEMANTIC_ERROR |
Modifier and Type | Method | Description |
---|---|---|
static AnalysisError.Kind |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static AnalysisError.Kind[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AnalysisError.Kind PARSE_ERROR
public static final AnalysisError.Kind SEMANTIC_ERROR
public static final AnalysisError.Kind CHECK_ERROR
public static final AnalysisError.Kind SE_ERROR
public static AnalysisError.Kind[] values()
for (AnalysisError.Kind c : AnalysisError.Kind.values()) System.out.println(c);
public static AnalysisError.Kind 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 © 2012–2018 SonarSource. All rights reserved.