com.yelp.nrtsearch.server.grpc.VirtualFieldOrBuilder 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 VirtualFieldOrBuilder extends
// @@protoc_insertion_point(interface_extends:luceneserver.VirtualField)
com.google.protobuf.MessageOrBuilder {
/**
*
* Script defining this field's values.
*
*
* .luceneserver.Script script = 1;
* @return Whether the script field is set.
*/
boolean hasScript();
/**
*
* Script defining this field's values.
*
*
* .luceneserver.Script script = 1;
* @return The script.
*/
com.yelp.nrtsearch.server.grpc.Script getScript();
/**
*
* Script defining this field's values.
*
*
* .luceneserver.Script script = 1;
*/
com.yelp.nrtsearch.server.grpc.ScriptOrBuilder getScriptOrBuilder();
/**
*
* Virtual field's name. Must be different from registered fields and any other virtual fields.
*
*
* string name = 2;
* @return The name.
*/
java.lang.String getName();
/**
*
* Virtual field's name. Must be different from registered fields and any other virtual fields.
*
*
* string name = 2;
* @return The bytes for name.
*/
com.google.protobuf.ByteString
getNameBytes();
}