
artoria.data.comparison.support.difference.FieldCompareResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of artoria-extend Show documentation
Show all versions of artoria-extend Show documentation
Artoria is a java technology framework based on the facade pattern.
The newest version!
package artoria.data.comparison.support.difference;
/**
* The field compare result.
* @author Kahle
*/
public class FieldCompareResult {
private String name;
private String description;
private Object leftValue;
private Object rightValue;
public FieldCompareResult(String name, String description) {
this.description = description;
this.name = name;
}
public FieldCompareResult() {
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public Object getLeftValue() {
return leftValue;
}
public void setLeftValue(Object leftValue) {
this.leftValue = leftValue;
}
public Object getRightValue() {
return rightValue;
}
public void setRightValue(Object rightValue) {
this.rightValue = rightValue;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy