com.yelp.nrtsearch.server.grpc.GeoPointQueryOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clientlib Show documentation
Show all versions of clientlib Show documentation
GRPC Clientlib for nrtSearch
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: yelp/nrtsearch/search.proto
// Protobuf Java Version: 3.25.3
package com.yelp.nrtsearch.server.grpc;
public interface GeoPointQueryOrBuilder extends
// @@protoc_insertion_point(interface_extends:luceneserver.GeoPointQuery)
com.google.protobuf.MessageOrBuilder {
/**
*
* Field in the document to query
*
*
* string field = 1;
* @return The field.
*/
java.lang.String getField();
/**
*
* Field in the document to query
*
*
* string field = 1;
* @return The bytes for field.
*/
com.google.protobuf.ByteString
getFieldBytes();
/**
*
* point used to query whether the polygon contains it.
*
*
* .google.type.LatLng point = 2;
* @return Whether the point field is set.
*/
boolean hasPoint();
/**
*
* point used to query whether the polygon contains it.
*
*
* .google.type.LatLng point = 2;
* @return The point.
*/
com.google.type.LatLng getPoint();
/**
*
* point used to query whether the polygon contains it.
*
*
* .google.type.LatLng point = 2;
*/
com.google.type.LatLngOrBuilder getPointOrBuilder();
}