com.yelp.nrtsearch.server.grpc.GeoBoundingBoxQueryOrBuilder 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 GeoBoundingBoxQueryOrBuilder extends
// @@protoc_insertion_point(interface_extends:luceneserver.GeoBoundingBoxQuery)
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();
/**
*
* top left corner of the geo box
*
*
* .google.type.LatLng topLeft = 2;
* @return Whether the topLeft field is set.
*/
boolean hasTopLeft();
/**
*
* top left corner of the geo box
*
*
* .google.type.LatLng topLeft = 2;
* @return The topLeft.
*/
com.google.type.LatLng getTopLeft();
/**
*
* top left corner of the geo box
*
*
* .google.type.LatLng topLeft = 2;
*/
com.google.type.LatLngOrBuilder getTopLeftOrBuilder();
/**
*
* bottom right corner of the geo box
*
*
* .google.type.LatLng bottomRight = 3;
* @return Whether the bottomRight field is set.
*/
boolean hasBottomRight();
/**
*
* bottom right corner of the geo box
*
*
* .google.type.LatLng bottomRight = 3;
* @return The bottomRight.
*/
com.google.type.LatLng getBottomRight();
/**
*
* bottom right corner of the geo box
*
*
* .google.type.LatLng bottomRight = 3;
*/
com.google.type.LatLngOrBuilder getBottomRightOrBuilder();
}