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

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

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

import com.fasterxml.jackson.annotation.JsonProperty;

import java.util.List;

public class Facet {

    private String key;

    @JsonProperty("items")
    private List facetItems;

    private FacetRange range;

    public String getKey() {
        return key;
    }

    public void setKey(String key) {
        this.key = key;
    }

    public List getFacetItems() {
        return facetItems;
    }

    public void setFacetItems(List facetItems) {
        this.facetItems = facetItems;
    }

    public FacetRange getRange() {
        return range;
    }

    public void setRange(FacetRange range) {
        this.range = range;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy