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

com.visenze.visearch.FacetRange Maven / Gradle / Ivy

There is a newer version: 1.14.5
Show newest version
package com.visenze.visearch;

public class FacetRange {

    private Number min;

    private Number max;

    public Number getMin() {
        return min;
    }

    public void setMin(Number min) {
        this.min = min;
    }

    public Number getMax() {
        return max;
    }

    public void setMax(Number max) {
        this.max = max;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy