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

com.rbmhtechnology.vind.api.result.facet.IntervalFacetResult Maven / Gradle / Ivy

There is a newer version: 3.2.0
Show newest version
package com.rbmhtechnology.vind.api.result.facet;

import java.util.List;

/**
 * @author Thomas Kurz ([email protected])
 * @since 28.07.16.
 */
public class IntervalFacetResult implements FacetResult {

    private List> values; //TODO values could include interval info

    public IntervalFacetResult(List> values) {
        this.values = values;
    }

    public List> getValues() {
        return values;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy