
com.senseidb.search.client.json.req.query.PathQuery Maven / Gradle / Ivy
package com.senseidb.search.client.json.req.query;
import com.senseidb.search.client.json.CustomJsonHandler;
@CustomJsonHandler(value = QueryJsonHandler.class)
public class PathQuery extends FieldAware implements Query {
private String value;
private double boost;
public PathQuery(String field, String value, double boost) {
super();
this.value = value;
this.boost = boost;
this.field = field;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy