com.poiji.config.DefaultCastingError Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of poiji2 Show documentation
Show all versions of poiji2 Show documentation
Perfect annotation based library to read and write excel files
package com.poiji.config;
public final class DefaultCastingError {
private String value;
private Object defaultValue;
private String sheetName;
private int row;
private int column;
private Exception exception;
DefaultCastingError(String value, Object defaultValue, String sheetName, int row, int column, Exception exception) {
this.value = value;
this.defaultValue = defaultValue;
this.sheetName = sheetName;
this.row = row;
this.column = column;
this.exception = exception;
}
public String getValue() {
return value;
}
public Object getDefaultValue() {
return defaultValue;
}
public String getSheetName() {
return sheetName;
}
public int getRow() {
return row;
}
public int getColumn() {
return column;
}
public Exception getException() {
return exception;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy