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

com.wizzdi.dynamic.properties.converter.postgresql.DynamicPredicateItem Maven / Gradle / Ivy

package com.wizzdi.dynamic.properties.converter.postgresql;


public class DynamicPredicateItem extends DynamicFilterItem {
    private FilterType filterType;
    private Object value;


    public DynamicPredicateItem(FilterType filterType, Object value) {
        this.filterType = filterType;
        this.value = value;
    }

    public DynamicPredicateItem() {
    }

    public FilterType getFilterType() {
        return filterType;
    }

    public  T setFilterType(FilterType filterType) {
        this.filterType = filterType;
        return (T) this;
    }

    public Object getValue() {
        return value;
    }

    public  T setValue(Object value) {
        this.value = value;
        return (T) this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy