You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
87 lines
1.9 KiB
87 lines
1.9 KiB
/*
|
|
* Copyright (c) 2013- Facebook.
|
|
* All rights reserved.
|
|
*/
|
|
|
|
package utils;
|
|
|
|
import java.nio.file.Path;
|
|
|
|
public class InferError {
|
|
|
|
private String errorType;
|
|
private Path errorFile;
|
|
private String errorMethod;
|
|
private int errorLine;
|
|
|
|
public InferError(String errorType, Path errorFile, String errorMethod, int errorLine) {
|
|
this.errorType = errorType;
|
|
this.errorMethod = errorMethod;
|
|
this.errorLine = errorLine;
|
|
this.errorFile = errorFile;
|
|
}
|
|
|
|
public InferError(String errorType, Path errorFile, String errorMethod) {
|
|
this.errorType = errorType;
|
|
this.errorFile = errorFile;
|
|
this.errorMethod = errorMethod;
|
|
this.errorLine = -1;
|
|
}
|
|
|
|
public static InferError inferError(String errorMethod, Path errorFile, String errorType) {
|
|
return new InferError(errorMethod, errorFile, errorType);
|
|
}
|
|
|
|
public String getErrorType() {
|
|
return errorType;
|
|
}
|
|
|
|
public String getErrorMethod() {
|
|
return errorMethod;
|
|
}
|
|
|
|
public Path getErrorFile() {
|
|
return errorFile;
|
|
}
|
|
|
|
public int getErrorLine() {
|
|
return errorLine;
|
|
}
|
|
|
|
public String toStringNoLine() {
|
|
return errorType + " at " + errorFile + ", method " + errorMethod;
|
|
}
|
|
|
|
public String toString() {
|
|
if (errorLine > 0)
|
|
return toStringNoLine() + " (line " + errorLine + ")";
|
|
else return toStringNoLine();
|
|
}
|
|
|
|
public String toStringFileMethod() {
|
|
return errorFile + ", method " + errorMethod;
|
|
}
|
|
|
|
public String toStringErrorTypeMethod() {
|
|
return errorType + " at " + errorMethod;
|
|
}
|
|
|
|
public boolean matchType(String type) {
|
|
return this.errorType.equals(type);
|
|
}
|
|
|
|
public boolean matchFile(Path file) {
|
|
return this.errorFile.equals(file);
|
|
}
|
|
|
|
public boolean matchMethod(String method) {
|
|
return this.errorMethod.equals(method);
|
|
}
|
|
|
|
public boolean matchLine(int line) {
|
|
return this.errorLine < 0 || line < 0
|
|
|| (this.errorLine == line);
|
|
}
|
|
|
|
}
|