public enum ScalafixFileEvaluationError extends java.lang.Enum<ScalafixFileEvaluationError>
| Enum Constant and Description |
|---|
MissingSemanticdbError
A semantic rewrite was run on a source file that has no associated
META-INF/semanticdb/.../*.semanticdb. |
ParseError
A source file failed to parse.
|
StaleSemanticdbError
The source file contents on disk have changed since the last compilation with the SemanticDB compiler plugin.
|
UnexpectedError
Something unexpected happened.
|
| Modifier and Type | Method and Description |
|---|---|
static ScalafixFileEvaluationError |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ScalafixFileEvaluationError[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScalafixFileEvaluationError UnexpectedError
public static final ScalafixFileEvaluationError ParseError
public static final ScalafixFileEvaluationError StaleSemanticdbError
public static final ScalafixFileEvaluationError MissingSemanticdbError
META-INF/semanticdb/.../*.semanticdb.
Typical causes of this error include
-P:semanticdb:sourceroot:{path}
then make sure the provided --sourceroot is correct.
public static ScalafixFileEvaluationError[] values()
for (ScalafixFileEvaluationError c : ScalafixFileEvaluationError.values()) System.out.println(c);
public static ScalafixFileEvaluationError 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