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

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

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

public class FacetItem {

    private String value;

    private Integer count;

    public String getValue() {
        return value;
    }

    public Integer getCount() {
        return count;
    }

    public void setValue(String value) {
        this.value = value;
    }

    public void setCount(Integer count) {
        this.count = count;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy