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

com.unbxd.client.search.response.RangeFacetEntry Maven / Gradle / Ivy

The newest version!
package com.unbxd.client.search.response;

/**
 * Created with IntelliJ IDEA.
 * User: sourabh
 * Date: 08/07/14
 * Time: 11:03 AM
 * To change this template use File | Settings | File Templates.
 */
public class RangeFacetEntry extends FacetEntry{

    private double from;
    private double to;

    public RangeFacetEntry(double from, double to, int count) {
        super(count);

        this.from = from;
        this.to = to;
    }

    public double getFrom(){
        return this.from;
    }

    public double getTo(){
        return this.to;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy