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

com.senseidb.search.client.json.req.query.PathQuery Maven / Gradle / Ivy

There is a newer version: 2.0.1
Show newest version
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