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

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

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

import java.util.List;
import java.util.Map;

/**
 * Created by dejun on 5/6/17.
 */
public class ObjectSearchResult {
    private String type;
    private Float score;
    private List box;
    private Map> attributes;
    private Map> attributesList;
    private int total;
    private List result;
    private List facets;

    public ObjectSearchResult() {

    }

    public String getType() {
        return type;
    }

    public Float getScore() {
        return score;
    }

    public List getBox() {
        return box;
    }

    public Map> getAttributes() {
        return attributes;
    }

    public Map> getAttributesList() {
        return attributesList;
    }

    public int getTotal() {
        return total;
    }

    public void setTotal(int total) {
        this.total = total;
    }

    public List getResult() {
        return result;
    }

    public void setResult(List result) {
        this.result = result;
    }

    public void setType(String type) {
        this.type = type;
    }

    public void setScore(Float score) {
        this.score = score;
    }

    public void setBox(List box) {
        this.box = box;
    }

    public void setAttributes(Map> attributes) {
        this.attributes = attributes;
    }

    public void setAttributesList(Map> attributesList) {
        this.attributesList = attributesList;
    }

    public List getFacets() {
        return facets;
    }

    public void setFacets(List facets) {
        this.facets = facets;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy