All Downloads are FREE. Search and download functionalities are using the official Maven repository.

artoria.data.comparison.support.difference.FieldCompareResult Maven / Gradle / Ivy

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