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

x7.core.bean.condition.InCondition Maven / Gradle / Ivy

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

import java.util.List;


public class InCondition {

    private String property;
    private List inList;

    private transient Class clz;

    public String getProperty() {
        return property;
    }

    public void setProperty(String property) {
        this.property = property;
    }

    public List getInList() {
        return inList;
    }

    public void setInList(List inList) {
        this.inList = inList;
    }

    public Class getClz() {
        return clz;
    }

    public void setClz(Class clz) {
        this.clz = clz;
    }

    public InCondition(){
    }

    public InCondition(String property,List inList ){
        this.property = property;
        this.inList = inList;
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy