public enum ScalafixEvaluationError extends java.lang.Enum<ScalafixEvaluationError>
| Enum Constant and Description |
|---|
CommandLineError
A command-line argument parsed incorrectly.
|
NoFilesError
No files were provided to Scalafix so nothing happened.
|
UnexpectedError
Something unexpected happened.
|
| Modifier and Type | Method and Description |
|---|---|
static ScalafixEvaluationError |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ScalafixEvaluationError[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScalafixEvaluationError UnexpectedError
public static final ScalafixEvaluationError CommandLineError
public static final ScalafixEvaluationError NoFilesError
public static ScalafixEvaluationError[] values()
for (ScalafixEvaluationError c : ScalafixEvaluationError.values()) System.out.println(c);
public static ScalafixEvaluationError 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