com.yelp.nrtsearch.server.grpc.PhraseQuery 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
The newest version!
// 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;
/**
*
* A Query that matches documents containing a particular sequence of terms.
*
*
* Protobuf type {@code luceneserver.PhraseQuery}
*/
public final class PhraseQuery extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:luceneserver.PhraseQuery)
PhraseQueryOrBuilder {
private static final long serialVersionUID = 0L;
// Use PhraseQuery.newBuilder() to construct.
private PhraseQuery(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private PhraseQuery() {
field_ = "";
terms_ =
com.google.protobuf.LazyStringArrayList.emptyList();
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new PhraseQuery();
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.yelp.nrtsearch.server.grpc.SearchResponseProto.internal_static_luceneserver_PhraseQuery_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.yelp.nrtsearch.server.grpc.SearchResponseProto.internal_static_luceneserver_PhraseQuery_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.yelp.nrtsearch.server.grpc.PhraseQuery.class, com.yelp.nrtsearch.server.grpc.PhraseQuery.Builder.class);
}
public static final int SLOP_FIELD_NUMBER = 1;
private int slop_ = 0;
/**
*
* Edit distance between respective positions of terms as defined in this PhraseQuery and the positions
*of terms in a document.
*
*
* int32 slop = 1;
* @return The slop.
*/
@java.lang.Override
public int getSlop() {
return slop_;
}
public static final int FIELD_FIELD_NUMBER = 2;
@SuppressWarnings("serial")
private volatile java.lang.Object field_ = "";
/**
*
* The field in the index that this query applies to.
*
*
* string field = 2;
* @return The field.
*/
@java.lang.Override
public java.lang.String getField() {
java.lang.Object ref = field_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
field_ = s;
return s;
}
}
/**
*
* The field in the index that this query applies to.
*
*
* string field = 2;
* @return The bytes for field.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getFieldBytes() {
java.lang.Object ref = field_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
field_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int TERMS_FIELD_NUMBER = 3;
@SuppressWarnings("serial")
private com.google.protobuf.LazyStringArrayList terms_ =
com.google.protobuf.LazyStringArrayList.emptyList();
/**
*
* Terms to match.
*
*
* repeated string terms = 3;
* @return A list containing the terms.
*/
public com.google.protobuf.ProtocolStringList
getTermsList() {
return terms_;
}
/**
*
* Terms to match.
*
*
* repeated string terms = 3;
* @return The count of terms.
*/
public int getTermsCount() {
return terms_.size();
}
/**
*
* Terms to match.
*
*
* repeated string terms = 3;
* @param index The index of the element to return.
* @return The terms at the given index.
*/
public java.lang.String getTerms(int index) {
return terms_.get(index);
}
/**
*
* Terms to match.
*
*
* repeated string terms = 3;
* @param index The index of the value to return.
* @return The bytes of the terms at the given index.
*/
public com.google.protobuf.ByteString
getTermsBytes(int index) {
return terms_.getByteString(index);
}
private byte memoizedIsInitialized = -1;
@java.lang.Override
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
@java.lang.Override
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
if (slop_ != 0) {
output.writeInt32(1, slop_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(field_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 2, field_);
}
for (int i = 0; i < terms_.size(); i++) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 3, terms_.getRaw(i));
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (slop_ != 0) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(1, slop_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(field_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, field_);
}
{
int dataSize = 0;
for (int i = 0; i < terms_.size(); i++) {
dataSize += computeStringSizeNoTag(terms_.getRaw(i));
}
size += dataSize;
size += 1 * getTermsList().size();
}
size += getUnknownFields().getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof com.yelp.nrtsearch.server.grpc.PhraseQuery)) {
return super.equals(obj);
}
com.yelp.nrtsearch.server.grpc.PhraseQuery other = (com.yelp.nrtsearch.server.grpc.PhraseQuery) obj;
if (getSlop()
!= other.getSlop()) return false;
if (!getField()
.equals(other.getField())) return false;
if (!getTermsList()
.equals(other.getTermsList())) return false;
if (!getUnknownFields().equals(other.getUnknownFields())) return false;
return true;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
hash = (37 * hash) + SLOP_FIELD_NUMBER;
hash = (53 * hash) + getSlop();
hash = (37 * hash) + FIELD_FIELD_NUMBER;
hash = (53 * hash) + getField().hashCode();
if (getTermsCount() > 0) {
hash = (37 * hash) + TERMS_FIELD_NUMBER;
hash = (53 * hash) + getTermsList().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.yelp.nrtsearch.server.grpc.PhraseQuery parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.yelp.nrtsearch.server.grpc.PhraseQuery parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.yelp.nrtsearch.server.grpc.PhraseQuery parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.yelp.nrtsearch.server.grpc.PhraseQuery parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.yelp.nrtsearch.server.grpc.PhraseQuery parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.yelp.nrtsearch.server.grpc.PhraseQuery parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.yelp.nrtsearch.server.grpc.PhraseQuery parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.yelp.nrtsearch.server.grpc.PhraseQuery parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
public static com.yelp.nrtsearch.server.grpc.PhraseQuery parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static com.yelp.nrtsearch.server.grpc.PhraseQuery parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input, extensionRegistry);
}
public static com.yelp.nrtsearch.server.grpc.PhraseQuery parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.yelp.nrtsearch.server.grpc.PhraseQuery parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
@java.lang.Override
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(com.yelp.nrtsearch.server.grpc.PhraseQuery prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
@java.lang.Override
public Builder toBuilder() {
return this == DEFAULT_INSTANCE
? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
*
* A Query that matches documents containing a particular sequence of terms.
*
*
* Protobuf type {@code luceneserver.PhraseQuery}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:luceneserver.PhraseQuery)
com.yelp.nrtsearch.server.grpc.PhraseQueryOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.yelp.nrtsearch.server.grpc.SearchResponseProto.internal_static_luceneserver_PhraseQuery_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.yelp.nrtsearch.server.grpc.SearchResponseProto.internal_static_luceneserver_PhraseQuery_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.yelp.nrtsearch.server.grpc.PhraseQuery.class, com.yelp.nrtsearch.server.grpc.PhraseQuery.Builder.class);
}
// Construct using com.yelp.nrtsearch.server.grpc.PhraseQuery.newBuilder()
private Builder() {
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
slop_ = 0;
field_ = "";
terms_ =
com.google.protobuf.LazyStringArrayList.emptyList();
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return com.yelp.nrtsearch.server.grpc.SearchResponseProto.internal_static_luceneserver_PhraseQuery_descriptor;
}
@java.lang.Override
public com.yelp.nrtsearch.server.grpc.PhraseQuery getDefaultInstanceForType() {
return com.yelp.nrtsearch.server.grpc.PhraseQuery.getDefaultInstance();
}
@java.lang.Override
public com.yelp.nrtsearch.server.grpc.PhraseQuery build() {
com.yelp.nrtsearch.server.grpc.PhraseQuery result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.yelp.nrtsearch.server.grpc.PhraseQuery buildPartial() {
com.yelp.nrtsearch.server.grpc.PhraseQuery result = new com.yelp.nrtsearch.server.grpc.PhraseQuery(this);
if (bitField0_ != 0) { buildPartial0(result); }
onBuilt();
return result;
}
private void buildPartial0(com.yelp.nrtsearch.server.grpc.PhraseQuery result) {
int from_bitField0_ = bitField0_;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.slop_ = slop_;
}
if (((from_bitField0_ & 0x00000002) != 0)) {
result.field_ = field_;
}
if (((from_bitField0_ & 0x00000004) != 0)) {
terms_.makeImmutable();
result.terms_ = terms_;
}
}
@java.lang.Override
public Builder clone() {
return super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return super.setField(field, value);
}
@java.lang.Override
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof com.yelp.nrtsearch.server.grpc.PhraseQuery) {
return mergeFrom((com.yelp.nrtsearch.server.grpc.PhraseQuery)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.yelp.nrtsearch.server.grpc.PhraseQuery other) {
if (other == com.yelp.nrtsearch.server.grpc.PhraseQuery.getDefaultInstance()) return this;
if (other.getSlop() != 0) {
setSlop(other.getSlop());
}
if (!other.getField().isEmpty()) {
field_ = other.field_;
bitField0_ |= 0x00000002;
onChanged();
}
if (!other.terms_.isEmpty()) {
if (terms_.isEmpty()) {
terms_ = other.terms_;
bitField0_ |= 0x00000004;
} else {
ensureTermsIsMutable();
terms_.addAll(other.terms_);
}
onChanged();
}
this.mergeUnknownFields(other.getUnknownFields());
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 8: {
slop_ = input.readInt32();
bitField0_ |= 0x00000001;
break;
} // case 8
case 18: {
field_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000002;
break;
} // case 18
case 26: {
java.lang.String s = input.readStringRequireUtf8();
ensureTermsIsMutable();
terms_.add(s);
break;
} // case 26
default: {
if (!super.parseUnknownField(input, extensionRegistry, tag)) {
done = true; // was an endgroup tag
}
break;
} // default:
} // switch (tag)
} // while (!done)
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.unwrapIOException();
} finally {
onChanged();
} // finally
return this;
}
private int bitField0_;
private int slop_ ;
/**
*
* Edit distance between respective positions of terms as defined in this PhraseQuery and the positions
*of terms in a document.
*
*
* int32 slop = 1;
* @return The slop.
*/
@java.lang.Override
public int getSlop() {
return slop_;
}
/**
*
* Edit distance between respective positions of terms as defined in this PhraseQuery and the positions
*of terms in a document.
*
*
* int32 slop = 1;
* @param value The slop to set.
* @return This builder for chaining.
*/
public Builder setSlop(int value) {
slop_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
* Edit distance between respective positions of terms as defined in this PhraseQuery and the positions
*of terms in a document.
*
*
* int32 slop = 1;
* @return This builder for chaining.
*/
public Builder clearSlop() {
bitField0_ = (bitField0_ & ~0x00000001);
slop_ = 0;
onChanged();
return this;
}
private java.lang.Object field_ = "";
/**
*
* The field in the index that this query applies to.
*
*
* string field = 2;
* @return The field.
*/
public java.lang.String getField() {
java.lang.Object ref = field_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
field_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* The field in the index that this query applies to.
*
*
* string field = 2;
* @return The bytes for field.
*/
public com.google.protobuf.ByteString
getFieldBytes() {
java.lang.Object ref = field_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
field_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* The field in the index that this query applies to.
*
*
* string field = 2;
* @param value The field to set.
* @return This builder for chaining.
*/
public Builder setField(
java.lang.String value) {
if (value == null) { throw new NullPointerException(); }
field_ = value;
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
* The field in the index that this query applies to.
*
*
* string field = 2;
* @return This builder for chaining.
*/
public Builder clearField() {
field_ = getDefaultInstance().getField();
bitField0_ = (bitField0_ & ~0x00000002);
onChanged();
return this;
}
/**
*
* The field in the index that this query applies to.
*
*
* string field = 2;
* @param value The bytes for field to set.
* @return This builder for chaining.
*/
public Builder setFieldBytes(
com.google.protobuf.ByteString value) {
if (value == null) { throw new NullPointerException(); }
checkByteStringIsUtf8(value);
field_ = value;
bitField0_ |= 0x00000002;
onChanged();
return this;
}
private com.google.protobuf.LazyStringArrayList terms_ =
com.google.protobuf.LazyStringArrayList.emptyList();
private void ensureTermsIsMutable() {
if (!terms_.isModifiable()) {
terms_ = new com.google.protobuf.LazyStringArrayList(terms_);
}
bitField0_ |= 0x00000004;
}
/**
*
* Terms to match.
*
*
* repeated string terms = 3;
* @return A list containing the terms.
*/
public com.google.protobuf.ProtocolStringList
getTermsList() {
terms_.makeImmutable();
return terms_;
}
/**
*
* Terms to match.
*
*
* repeated string terms = 3;
* @return The count of terms.
*/
public int getTermsCount() {
return terms_.size();
}
/**
*
* Terms to match.
*
*
* repeated string terms = 3;
* @param index The index of the element to return.
* @return The terms at the given index.
*/
public java.lang.String getTerms(int index) {
return terms_.get(index);
}
/**
*
* Terms to match.
*
*
* repeated string terms = 3;
* @param index The index of the value to return.
* @return The bytes of the terms at the given index.
*/
public com.google.protobuf.ByteString
getTermsBytes(int index) {
return terms_.getByteString(index);
}
/**
*
* Terms to match.
*
*
* repeated string terms = 3;
* @param index The index to set the value at.
* @param value The terms to set.
* @return This builder for chaining.
*/
public Builder setTerms(
int index, java.lang.String value) {
if (value == null) { throw new NullPointerException(); }
ensureTermsIsMutable();
terms_.set(index, value);
bitField0_ |= 0x00000004;
onChanged();
return this;
}
/**
*
* Terms to match.
*
*
* repeated string terms = 3;
* @param value The terms to add.
* @return This builder for chaining.
*/
public Builder addTerms(
java.lang.String value) {
if (value == null) { throw new NullPointerException(); }
ensureTermsIsMutable();
terms_.add(value);
bitField0_ |= 0x00000004;
onChanged();
return this;
}
/**
*
* Terms to match.
*
*
* repeated string terms = 3;
* @param values The terms to add.
* @return This builder for chaining.
*/
public Builder addAllTerms(
java.lang.Iterable values) {
ensureTermsIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, terms_);
bitField0_ |= 0x00000004;
onChanged();
return this;
}
/**
*
* Terms to match.
*
*
* repeated string terms = 3;
* @return This builder for chaining.
*/
public Builder clearTerms() {
terms_ =
com.google.protobuf.LazyStringArrayList.emptyList();
bitField0_ = (bitField0_ & ~0x00000004);;
onChanged();
return this;
}
/**
*
* Terms to match.
*
*
* repeated string terms = 3;
* @param value The bytes of the terms to add.
* @return This builder for chaining.
*/
public Builder addTermsBytes(
com.google.protobuf.ByteString value) {
if (value == null) { throw new NullPointerException(); }
checkByteStringIsUtf8(value);
ensureTermsIsMutable();
terms_.add(value);
bitField0_ |= 0x00000004;
onChanged();
return this;
}
@java.lang.Override
public final Builder setUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFields(unknownFields);
}
@java.lang.Override
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:luceneserver.PhraseQuery)
}
// @@protoc_insertion_point(class_scope:luceneserver.PhraseQuery)
private static final com.yelp.nrtsearch.server.grpc.PhraseQuery DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.yelp.nrtsearch.server.grpc.PhraseQuery();
}
public static com.yelp.nrtsearch.server.grpc.PhraseQuery getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public PhraseQuery parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
Builder builder = newBuilder();
try {
builder.mergeFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(builder.buildPartial());
} catch (com.google.protobuf.UninitializedMessageException e) {
throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial());
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(e)
.setUnfinishedMessage(builder.buildPartial());
}
return builder.buildPartial();
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public com.yelp.nrtsearch.server.grpc.PhraseQuery getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}