public static enum ErrorReporter.EvaluationMode extends java.lang.Enum<ErrorReporter.EvaluationMode>
| Enum Constant and Description |
|---|
IDE
IDE mode.
|
IDE_LEGACY
Legacy IDE mode (Studio 1.0), where SyncIssue are not understood by the IDE.
|
STANDARD
Standard mode, errors should be breaking
|
| Modifier and Type | Method and Description |
|---|---|
static ErrorReporter.EvaluationMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ErrorReporter.EvaluationMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ErrorReporter.EvaluationMode STANDARD
public static final ErrorReporter.EvaluationMode IDE
public static final ErrorReporter.EvaluationMode IDE_LEGACY
public static ErrorReporter.EvaluationMode[] values()
for (ErrorReporter.EvaluationMode c : ErrorReporter.EvaluationMode.values()) System.out.println(c);
public static ErrorReporter.EvaluationMode 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