com.yelp.nrtsearch.server.grpc.GeoRadiusQueryOrBuilder 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 GeoRadiusQueryOrBuilder extends
// @@protoc_insertion_point(interface_extends:luceneserver.GeoRadiusQuery)
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();
/**
*
* target center geo point to calculate distance
*
*
* .google.type.LatLng center = 2;
* @return Whether the center field is set.
*/
boolean hasCenter();
/**
*
* target center geo point to calculate distance
*
*
* .google.type.LatLng center = 2;
* @return The center.
*/
com.google.type.LatLng getCenter();
/**
*
* target center geo point to calculate distance
*
*
* .google.type.LatLng center = 2;
*/
com.google.type.LatLngOrBuilder getCenterOrBuilder();
/**
*
* distance radius like "12 km". supports m, km and mi, default to m
*
*
* string radius = 3;
* @return The radius.
*/
java.lang.String getRadius();
/**
*
* distance radius like "12 km". supports m, km and mi, default to m
*
*
* string radius = 3;
* @return The bytes for radius.
*/
com.google.protobuf.ByteString
getRadiusBytes();
}