public enum AnalysisErrorType extends java.lang.Enum<AnalysisErrorType>
| Enum Constant and Description |
|---|
CHECKED_MODE_COMPILE_TIME_ERROR |
COMPILE_TIME_ERROR |
HINT |
LINT |
STATIC_TYPE_WARNING |
STATIC_WARNING |
SYNTACTIC_ERROR |
TODO |
| Modifier and Type | Method and Description |
|---|---|
static AnalysisErrorType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AnalysisErrorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AnalysisErrorType CHECKED_MODE_COMPILE_TIME_ERROR
public static final AnalysisErrorType COMPILE_TIME_ERROR
public static final AnalysisErrorType HINT
public static final AnalysisErrorType LINT
public static final AnalysisErrorType STATIC_TYPE_WARNING
public static final AnalysisErrorType STATIC_WARNING
public static final AnalysisErrorType SYNTACTIC_ERROR
public static final AnalysisErrorType TODO
public static AnalysisErrorType[] values()
for (AnalysisErrorType c : AnalysisErrorType.values()) System.out.println(c);
public static AnalysisErrorType 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