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

x7.core.bean.Reduce Maven / Gradle / Ivy

There is a newer version: 2.2.7.RELEASE
Show newest version
package x7.core.bean;


public class Reduce {
    private Criteria.ReduceType type;
    private String property;

    public Criteria.ReduceType getType() {
        return type;
    }
    public void setType(Criteria.ReduceType type) {
        this.type = type;
    }
    public String getProperty() {
        return property;
    }
    public void setProperty(String property) {
        this.property = property;
    }

    @Override
    public String toString() {
        return "Reduce{" +
                "type=" + type +
                ", property='" + property + '\'' +
                '}';
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy