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

com.senseidb.search.client.json.res.FacetResult Maven / Gradle / Ivy

package com.senseidb.search.client.json.res;

public class FacetResult {
    private String value;
    private Boolean selected  = false;
    private Integer count;
    @Override
    public String toString() {
        return "FacetResult [value=" + value + ", selected=" + selected + ", count=" + count + "]";
    }
    public String getValue() {
      return value;
    }
    public Boolean getSelected() {
      return selected;
    }
    public Integer getCount() {
      return count;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy