grpc.cache_client._SetContainsResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of client-protos Show documentation
Show all versions of client-protos Show documentation
Java protobuf protocols that define the Momento gRPC wire format
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: cacheclient.proto
package grpc.cache_client;
/**
* Protobuf type {@code cache_client._SetContainsResponse}
*/
public final class _SetContainsResponse extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:cache_client._SetContainsResponse)
_SetContainsResponseOrBuilder {
private static final long serialVersionUID = 0L;
// Use _SetContainsResponse.newBuilder() to construct.
private _SetContainsResponse(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private _SetContainsResponse() {
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new _SetContainsResponse();
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return grpc.cache_client.Cacheclient.internal_static_cache_client__SetContainsResponse_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return grpc.cache_client.Cacheclient.internal_static_cache_client__SetContainsResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
grpc.cache_client._SetContainsResponse.class, grpc.cache_client._SetContainsResponse.Builder.class);
}
public interface _FoundOrBuilder extends
// @@protoc_insertion_point(interface_extends:cache_client._SetContainsResponse._Found)
com.google.protobuf.MessageOrBuilder {
/**
*
* This will be the same length as the elements passed in the request.
* It represents whether each element is a member of the set, with indices corresponding to the request elements.
*
*
* repeated bool contains = 1;
* @return A list containing the contains.
*/
java.util.List getContainsList();
/**
*
* This will be the same length as the elements passed in the request.
* It represents whether each element is a member of the set, with indices corresponding to the request elements.
*
*
* repeated bool contains = 1;
* @return The count of contains.
*/
int getContainsCount();
/**
*
* This will be the same length as the elements passed in the request.
* It represents whether each element is a member of the set, with indices corresponding to the request elements.
*
*
* repeated bool contains = 1;
* @param index The index of the element to return.
* @return The contains at the given index.
*/
boolean getContains(int index);
}
/**
* Protobuf type {@code cache_client._SetContainsResponse._Found}
*/
public static final class _Found extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:cache_client._SetContainsResponse._Found)
_FoundOrBuilder {
private static final long serialVersionUID = 0L;
// Use _Found.newBuilder() to construct.
private _Found(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private _Found() {
contains_ = emptyBooleanList();
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new _Found();
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return grpc.cache_client.Cacheclient.internal_static_cache_client__SetContainsResponse__Found_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return grpc.cache_client.Cacheclient.internal_static_cache_client__SetContainsResponse__Found_fieldAccessorTable
.ensureFieldAccessorsInitialized(
grpc.cache_client._SetContainsResponse._Found.class, grpc.cache_client._SetContainsResponse._Found.Builder.class);
}
public static final int CONTAINS_FIELD_NUMBER = 1;
@SuppressWarnings("serial")
private com.google.protobuf.Internal.BooleanList contains_;
/**
*
* This will be the same length as the elements passed in the request.
* It represents whether each element is a member of the set, with indices corresponding to the request elements.
*
*
* repeated bool contains = 1;
* @return A list containing the contains.
*/
@java.lang.Override
public java.util.List
getContainsList() {
return contains_;
}
/**
*
* This will be the same length as the elements passed in the request.
* It represents whether each element is a member of the set, with indices corresponding to the request elements.
*
*
* repeated bool contains = 1;
* @return The count of contains.
*/
public int getContainsCount() {
return contains_.size();
}
/**
*
* This will be the same length as the elements passed in the request.
* It represents whether each element is a member of the set, with indices corresponding to the request elements.
*
*
* repeated bool contains = 1;
* @param index The index of the element to return.
* @return The contains at the given index.
*/
public boolean getContains(int index) {
return contains_.getBoolean(index);
}
private int containsMemoizedSerializedSize = -1;
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 {
getSerializedSize();
if (getContainsList().size() > 0) {
output.writeUInt32NoTag(10);
output.writeUInt32NoTag(containsMemoizedSerializedSize);
}
for (int i = 0; i < contains_.size(); i++) {
output.writeBoolNoTag(contains_.getBoolean(i));
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
{
int dataSize = 0;
dataSize = 1 * getContainsList().size();
size += dataSize;
if (!getContainsList().isEmpty()) {
size += 1;
size += com.google.protobuf.CodedOutputStream
.computeInt32SizeNoTag(dataSize);
}
containsMemoizedSerializedSize = dataSize;
}
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 grpc.cache_client._SetContainsResponse._Found)) {
return super.equals(obj);
}
grpc.cache_client._SetContainsResponse._Found other = (grpc.cache_client._SetContainsResponse._Found) obj;
if (!getContainsList()
.equals(other.getContainsList())) 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();
if (getContainsCount() > 0) {
hash = (37 * hash) + CONTAINS_FIELD_NUMBER;
hash = (53 * hash) + getContainsList().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static grpc.cache_client._SetContainsResponse._Found parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static grpc.cache_client._SetContainsResponse._Found parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static grpc.cache_client._SetContainsResponse._Found parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static grpc.cache_client._SetContainsResponse._Found parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static grpc.cache_client._SetContainsResponse._Found parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static grpc.cache_client._SetContainsResponse._Found parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static grpc.cache_client._SetContainsResponse._Found parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static grpc.cache_client._SetContainsResponse._Found 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 grpc.cache_client._SetContainsResponse._Found parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static grpc.cache_client._SetContainsResponse._Found 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 grpc.cache_client._SetContainsResponse._Found parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static grpc.cache_client._SetContainsResponse._Found 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(grpc.cache_client._SetContainsResponse._Found 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;
}
/**
* Protobuf type {@code cache_client._SetContainsResponse._Found}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:cache_client._SetContainsResponse._Found)
grpc.cache_client._SetContainsResponse._FoundOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return grpc.cache_client.Cacheclient.internal_static_cache_client__SetContainsResponse__Found_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return grpc.cache_client.Cacheclient.internal_static_cache_client__SetContainsResponse__Found_fieldAccessorTable
.ensureFieldAccessorsInitialized(
grpc.cache_client._SetContainsResponse._Found.class, grpc.cache_client._SetContainsResponse._Found.Builder.class);
}
// Construct using grpc.cache_client._SetContainsResponse._Found.newBuilder()
private Builder() {
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
contains_ = emptyBooleanList();
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return grpc.cache_client.Cacheclient.internal_static_cache_client__SetContainsResponse__Found_descriptor;
}
@java.lang.Override
public grpc.cache_client._SetContainsResponse._Found getDefaultInstanceForType() {
return grpc.cache_client._SetContainsResponse._Found.getDefaultInstance();
}
@java.lang.Override
public grpc.cache_client._SetContainsResponse._Found build() {
grpc.cache_client._SetContainsResponse._Found result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public grpc.cache_client._SetContainsResponse._Found buildPartial() {
grpc.cache_client._SetContainsResponse._Found result = new grpc.cache_client._SetContainsResponse._Found(this);
buildPartialRepeatedFields(result);
if (bitField0_ != 0) { buildPartial0(result); }
onBuilt();
return result;
}
private void buildPartialRepeatedFields(grpc.cache_client._SetContainsResponse._Found result) {
if (((bitField0_ & 0x00000001) != 0)) {
contains_.makeImmutable();
bitField0_ = (bitField0_ & ~0x00000001);
}
result.contains_ = contains_;
}
private void buildPartial0(grpc.cache_client._SetContainsResponse._Found result) {
int from_bitField0_ = bitField0_;
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof grpc.cache_client._SetContainsResponse._Found) {
return mergeFrom((grpc.cache_client._SetContainsResponse._Found)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(grpc.cache_client._SetContainsResponse._Found other) {
if (other == grpc.cache_client._SetContainsResponse._Found.getDefaultInstance()) return this;
if (!other.contains_.isEmpty()) {
if (contains_.isEmpty()) {
contains_ = other.contains_;
bitField0_ = (bitField0_ & ~0x00000001);
} else {
ensureContainsIsMutable();
contains_.addAll(other.contains_);
}
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: {
boolean v = input.readBool();
ensureContainsIsMutable();
contains_.addBoolean(v);
break;
} // case 8
case 10: {
int length = input.readRawVarint32();
int limit = input.pushLimit(length);
ensureContainsIsMutable();
while (input.getBytesUntilLimit() > 0) {
contains_.addBoolean(input.readBool());
}
input.popLimit(limit);
break;
} // case 10
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 com.google.protobuf.Internal.BooleanList contains_ = emptyBooleanList();
private void ensureContainsIsMutable() {
if (!((bitField0_ & 0x00000001) != 0)) {
contains_ = mutableCopy(contains_);
bitField0_ |= 0x00000001;
}
}
/**
*
* This will be the same length as the elements passed in the request.
* It represents whether each element is a member of the set, with indices corresponding to the request elements.
*
*
* repeated bool contains = 1;
* @return A list containing the contains.
*/
public java.util.List
getContainsList() {
return ((bitField0_ & 0x00000001) != 0) ?
java.util.Collections.unmodifiableList(contains_) : contains_;
}
/**
*
* This will be the same length as the elements passed in the request.
* It represents whether each element is a member of the set, with indices corresponding to the request elements.
*
*
* repeated bool contains = 1;
* @return The count of contains.
*/
public int getContainsCount() {
return contains_.size();
}
/**
*
* This will be the same length as the elements passed in the request.
* It represents whether each element is a member of the set, with indices corresponding to the request elements.
*
*
* repeated bool contains = 1;
* @param index The index of the element to return.
* @return The contains at the given index.
*/
public boolean getContains(int index) {
return contains_.getBoolean(index);
}
/**
*
* This will be the same length as the elements passed in the request.
* It represents whether each element is a member of the set, with indices corresponding to the request elements.
*
*
* repeated bool contains = 1;
* @param index The index to set the value at.
* @param value The contains to set.
* @return This builder for chaining.
*/
public Builder setContains(
int index, boolean value) {
ensureContainsIsMutable();
contains_.setBoolean(index, value);
onChanged();
return this;
}
/**
*
* This will be the same length as the elements passed in the request.
* It represents whether each element is a member of the set, with indices corresponding to the request elements.
*
*
* repeated bool contains = 1;
* @param value The contains to add.
* @return This builder for chaining.
*/
public Builder addContains(boolean value) {
ensureContainsIsMutable();
contains_.addBoolean(value);
onChanged();
return this;
}
/**
*
* This will be the same length as the elements passed in the request.
* It represents whether each element is a member of the set, with indices corresponding to the request elements.
*
*
* repeated bool contains = 1;
* @param values The contains to add.
* @return This builder for chaining.
*/
public Builder addAllContains(
java.lang.Iterable extends java.lang.Boolean> values) {
ensureContainsIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, contains_);
onChanged();
return this;
}
/**
*
* This will be the same length as the elements passed in the request.
* It represents whether each element is a member of the set, with indices corresponding to the request elements.
*
*
* repeated bool contains = 1;
* @return This builder for chaining.
*/
public Builder clearContains() {
contains_ = emptyBooleanList();
bitField0_ = (bitField0_ & ~0x00000001);
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:cache_client._SetContainsResponse._Found)
}
// @@protoc_insertion_point(class_scope:cache_client._SetContainsResponse._Found)
private static final grpc.cache_client._SetContainsResponse._Found DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new grpc.cache_client._SetContainsResponse._Found();
}
public static grpc.cache_client._SetContainsResponse._Found getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser<_Found>
PARSER = new com.google.protobuf.AbstractParser<_Found>() {
@java.lang.Override
public _Found 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<_Found> parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser<_Found> getParserForType() {
return PARSER;
}
@java.lang.Override
public grpc.cache_client._SetContainsResponse._Found getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
public interface _MissingOrBuilder extends
// @@protoc_insertion_point(interface_extends:cache_client._SetContainsResponse._Missing)
com.google.protobuf.MessageOrBuilder {
}
/**
* Protobuf type {@code cache_client._SetContainsResponse._Missing}
*/
public static final class _Missing extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:cache_client._SetContainsResponse._Missing)
_MissingOrBuilder {
private static final long serialVersionUID = 0L;
// Use _Missing.newBuilder() to construct.
private _Missing(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private _Missing() {
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new _Missing();
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return grpc.cache_client.Cacheclient.internal_static_cache_client__SetContainsResponse__Missing_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return grpc.cache_client.Cacheclient.internal_static_cache_client__SetContainsResponse__Missing_fieldAccessorTable
.ensureFieldAccessorsInitialized(
grpc.cache_client._SetContainsResponse._Missing.class, grpc.cache_client._SetContainsResponse._Missing.Builder.class);
}
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 {
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
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 grpc.cache_client._SetContainsResponse._Missing)) {
return super.equals(obj);
}
grpc.cache_client._SetContainsResponse._Missing other = (grpc.cache_client._SetContainsResponse._Missing) obj;
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 = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static grpc.cache_client._SetContainsResponse._Missing parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static grpc.cache_client._SetContainsResponse._Missing parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static grpc.cache_client._SetContainsResponse._Missing parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static grpc.cache_client._SetContainsResponse._Missing parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static grpc.cache_client._SetContainsResponse._Missing parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static grpc.cache_client._SetContainsResponse._Missing parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static grpc.cache_client._SetContainsResponse._Missing parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static grpc.cache_client._SetContainsResponse._Missing 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 grpc.cache_client._SetContainsResponse._Missing parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static grpc.cache_client._SetContainsResponse._Missing 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 grpc.cache_client._SetContainsResponse._Missing parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static grpc.cache_client._SetContainsResponse._Missing 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(grpc.cache_client._SetContainsResponse._Missing 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;
}
/**
* Protobuf type {@code cache_client._SetContainsResponse._Missing}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:cache_client._SetContainsResponse._Missing)
grpc.cache_client._SetContainsResponse._MissingOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return grpc.cache_client.Cacheclient.internal_static_cache_client__SetContainsResponse__Missing_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return grpc.cache_client.Cacheclient.internal_static_cache_client__SetContainsResponse__Missing_fieldAccessorTable
.ensureFieldAccessorsInitialized(
grpc.cache_client._SetContainsResponse._Missing.class, grpc.cache_client._SetContainsResponse._Missing.Builder.class);
}
// Construct using grpc.cache_client._SetContainsResponse._Missing.newBuilder()
private Builder() {
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
}
@java.lang.Override
public Builder clear() {
super.clear();
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return grpc.cache_client.Cacheclient.internal_static_cache_client__SetContainsResponse__Missing_descriptor;
}
@java.lang.Override
public grpc.cache_client._SetContainsResponse._Missing getDefaultInstanceForType() {
return grpc.cache_client._SetContainsResponse._Missing.getDefaultInstance();
}
@java.lang.Override
public grpc.cache_client._SetContainsResponse._Missing build() {
grpc.cache_client._SetContainsResponse._Missing result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public grpc.cache_client._SetContainsResponse._Missing buildPartial() {
grpc.cache_client._SetContainsResponse._Missing result = new grpc.cache_client._SetContainsResponse._Missing(this);
onBuilt();
return result;
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof grpc.cache_client._SetContainsResponse._Missing) {
return mergeFrom((grpc.cache_client._SetContainsResponse._Missing)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(grpc.cache_client._SetContainsResponse._Missing other) {
if (other == grpc.cache_client._SetContainsResponse._Missing.getDefaultInstance()) return this;
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;
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;
}
@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:cache_client._SetContainsResponse._Missing)
}
// @@protoc_insertion_point(class_scope:cache_client._SetContainsResponse._Missing)
private static final grpc.cache_client._SetContainsResponse._Missing DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new grpc.cache_client._SetContainsResponse._Missing();
}
public static grpc.cache_client._SetContainsResponse._Missing getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser<_Missing>
PARSER = new com.google.protobuf.AbstractParser<_Missing>() {
@java.lang.Override
public _Missing 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<_Missing> parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser<_Missing> getParserForType() {
return PARSER;
}
@java.lang.Override
public grpc.cache_client._SetContainsResponse._Missing getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
private int setCase_ = 0;
@SuppressWarnings("serial")
private java.lang.Object set_;
public enum SetCase
implements com.google.protobuf.Internal.EnumLite,
com.google.protobuf.AbstractMessage.InternalOneOfEnum {
FOUND(1),
MISSING(2),
SET_NOT_SET(0);
private final int value;
private SetCase(int value) {
this.value = value;
}
/**
* @param value The number of the enum to look for.
* @return The enum associated with the given number.
* @deprecated Use {@link #forNumber(int)} instead.
*/
@java.lang.Deprecated
public static SetCase valueOf(int value) {
return forNumber(value);
}
public static SetCase forNumber(int value) {
switch (value) {
case 1: return FOUND;
case 2: return MISSING;
case 0: return SET_NOT_SET;
default: return null;
}
}
public int getNumber() {
return this.value;
}
};
public SetCase
getSetCase() {
return SetCase.forNumber(
setCase_);
}
public static final int FOUND_FIELD_NUMBER = 1;
/**
* .cache_client._SetContainsResponse._Found found = 1;
* @return Whether the found field is set.
*/
@java.lang.Override
public boolean hasFound() {
return setCase_ == 1;
}
/**
* .cache_client._SetContainsResponse._Found found = 1;
* @return The found.
*/
@java.lang.Override
public grpc.cache_client._SetContainsResponse._Found getFound() {
if (setCase_ == 1) {
return (grpc.cache_client._SetContainsResponse._Found) set_;
}
return grpc.cache_client._SetContainsResponse._Found.getDefaultInstance();
}
/**
* .cache_client._SetContainsResponse._Found found = 1;
*/
@java.lang.Override
public grpc.cache_client._SetContainsResponse._FoundOrBuilder getFoundOrBuilder() {
if (setCase_ == 1) {
return (grpc.cache_client._SetContainsResponse._Found) set_;
}
return grpc.cache_client._SetContainsResponse._Found.getDefaultInstance();
}
public static final int MISSING_FIELD_NUMBER = 2;
/**
* .cache_client._SetContainsResponse._Missing missing = 2;
* @return Whether the missing field is set.
*/
@java.lang.Override
public boolean hasMissing() {
return setCase_ == 2;
}
/**
* .cache_client._SetContainsResponse._Missing missing = 2;
* @return The missing.
*/
@java.lang.Override
public grpc.cache_client._SetContainsResponse._Missing getMissing() {
if (setCase_ == 2) {
return (grpc.cache_client._SetContainsResponse._Missing) set_;
}
return grpc.cache_client._SetContainsResponse._Missing.getDefaultInstance();
}
/**
* .cache_client._SetContainsResponse._Missing missing = 2;
*/
@java.lang.Override
public grpc.cache_client._SetContainsResponse._MissingOrBuilder getMissingOrBuilder() {
if (setCase_ == 2) {
return (grpc.cache_client._SetContainsResponse._Missing) set_;
}
return grpc.cache_client._SetContainsResponse._Missing.getDefaultInstance();
}
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 (setCase_ == 1) {
output.writeMessage(1, (grpc.cache_client._SetContainsResponse._Found) set_);
}
if (setCase_ == 2) {
output.writeMessage(2, (grpc.cache_client._SetContainsResponse._Missing) set_);
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (setCase_ == 1) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, (grpc.cache_client._SetContainsResponse._Found) set_);
}
if (setCase_ == 2) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(2, (grpc.cache_client._SetContainsResponse._Missing) set_);
}
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 grpc.cache_client._SetContainsResponse)) {
return super.equals(obj);
}
grpc.cache_client._SetContainsResponse other = (grpc.cache_client._SetContainsResponse) obj;
if (!getSetCase().equals(other.getSetCase())) return false;
switch (setCase_) {
case 1:
if (!getFound()
.equals(other.getFound())) return false;
break;
case 2:
if (!getMissing()
.equals(other.getMissing())) return false;
break;
case 0:
default:
}
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();
switch (setCase_) {
case 1:
hash = (37 * hash) + FOUND_FIELD_NUMBER;
hash = (53 * hash) + getFound().hashCode();
break;
case 2:
hash = (37 * hash) + MISSING_FIELD_NUMBER;
hash = (53 * hash) + getMissing().hashCode();
break;
case 0:
default:
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static grpc.cache_client._SetContainsResponse parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static grpc.cache_client._SetContainsResponse parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static grpc.cache_client._SetContainsResponse parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static grpc.cache_client._SetContainsResponse parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static grpc.cache_client._SetContainsResponse parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static grpc.cache_client._SetContainsResponse parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static grpc.cache_client._SetContainsResponse parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static grpc.cache_client._SetContainsResponse 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 grpc.cache_client._SetContainsResponse parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static grpc.cache_client._SetContainsResponse 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 grpc.cache_client._SetContainsResponse parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static grpc.cache_client._SetContainsResponse 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(grpc.cache_client._SetContainsResponse 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;
}
/**
* Protobuf type {@code cache_client._SetContainsResponse}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:cache_client._SetContainsResponse)
grpc.cache_client._SetContainsResponseOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return grpc.cache_client.Cacheclient.internal_static_cache_client__SetContainsResponse_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return grpc.cache_client.Cacheclient.internal_static_cache_client__SetContainsResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
grpc.cache_client._SetContainsResponse.class, grpc.cache_client._SetContainsResponse.Builder.class);
}
// Construct using grpc.cache_client._SetContainsResponse.newBuilder()
private Builder() {
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
if (foundBuilder_ != null) {
foundBuilder_.clear();
}
if (missingBuilder_ != null) {
missingBuilder_.clear();
}
setCase_ = 0;
set_ = null;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return grpc.cache_client.Cacheclient.internal_static_cache_client__SetContainsResponse_descriptor;
}
@java.lang.Override
public grpc.cache_client._SetContainsResponse getDefaultInstanceForType() {
return grpc.cache_client._SetContainsResponse.getDefaultInstance();
}
@java.lang.Override
public grpc.cache_client._SetContainsResponse build() {
grpc.cache_client._SetContainsResponse result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public grpc.cache_client._SetContainsResponse buildPartial() {
grpc.cache_client._SetContainsResponse result = new grpc.cache_client._SetContainsResponse(this);
if (bitField0_ != 0) { buildPartial0(result); }
buildPartialOneofs(result);
onBuilt();
return result;
}
private void buildPartial0(grpc.cache_client._SetContainsResponse result) {
int from_bitField0_ = bitField0_;
}
private void buildPartialOneofs(grpc.cache_client._SetContainsResponse result) {
result.setCase_ = setCase_;
result.set_ = this.set_;
if (setCase_ == 1 &&
foundBuilder_ != null) {
result.set_ = foundBuilder_.build();
}
if (setCase_ == 2 &&
missingBuilder_ != null) {
result.set_ = missingBuilder_.build();
}
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof grpc.cache_client._SetContainsResponse) {
return mergeFrom((grpc.cache_client._SetContainsResponse)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(grpc.cache_client._SetContainsResponse other) {
if (other == grpc.cache_client._SetContainsResponse.getDefaultInstance()) return this;
switch (other.getSetCase()) {
case FOUND: {
mergeFound(other.getFound());
break;
}
case MISSING: {
mergeMissing(other.getMissing());
break;
}
case SET_NOT_SET: {
break;
}
}
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 10: {
input.readMessage(
getFoundFieldBuilder().getBuilder(),
extensionRegistry);
setCase_ = 1;
break;
} // case 10
case 18: {
input.readMessage(
getMissingFieldBuilder().getBuilder(),
extensionRegistry);
setCase_ = 2;
break;
} // case 18
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 setCase_ = 0;
private java.lang.Object set_;
public SetCase
getSetCase() {
return SetCase.forNumber(
setCase_);
}
public Builder clearSet() {
setCase_ = 0;
set_ = null;
onChanged();
return this;
}
private int bitField0_;
private com.google.protobuf.SingleFieldBuilderV3<
grpc.cache_client._SetContainsResponse._Found, grpc.cache_client._SetContainsResponse._Found.Builder, grpc.cache_client._SetContainsResponse._FoundOrBuilder> foundBuilder_;
/**
* .cache_client._SetContainsResponse._Found found = 1;
* @return Whether the found field is set.
*/
@java.lang.Override
public boolean hasFound() {
return setCase_ == 1;
}
/**
* .cache_client._SetContainsResponse._Found found = 1;
* @return The found.
*/
@java.lang.Override
public grpc.cache_client._SetContainsResponse._Found getFound() {
if (foundBuilder_ == null) {
if (setCase_ == 1) {
return (grpc.cache_client._SetContainsResponse._Found) set_;
}
return grpc.cache_client._SetContainsResponse._Found.getDefaultInstance();
} else {
if (setCase_ == 1) {
return foundBuilder_.getMessage();
}
return grpc.cache_client._SetContainsResponse._Found.getDefaultInstance();
}
}
/**
* .cache_client._SetContainsResponse._Found found = 1;
*/
public Builder setFound(grpc.cache_client._SetContainsResponse._Found value) {
if (foundBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
set_ = value;
onChanged();
} else {
foundBuilder_.setMessage(value);
}
setCase_ = 1;
return this;
}
/**
* .cache_client._SetContainsResponse._Found found = 1;
*/
public Builder setFound(
grpc.cache_client._SetContainsResponse._Found.Builder builderForValue) {
if (foundBuilder_ == null) {
set_ = builderForValue.build();
onChanged();
} else {
foundBuilder_.setMessage(builderForValue.build());
}
setCase_ = 1;
return this;
}
/**
* .cache_client._SetContainsResponse._Found found = 1;
*/
public Builder mergeFound(grpc.cache_client._SetContainsResponse._Found value) {
if (foundBuilder_ == null) {
if (setCase_ == 1 &&
set_ != grpc.cache_client._SetContainsResponse._Found.getDefaultInstance()) {
set_ = grpc.cache_client._SetContainsResponse._Found.newBuilder((grpc.cache_client._SetContainsResponse._Found) set_)
.mergeFrom(value).buildPartial();
} else {
set_ = value;
}
onChanged();
} else {
if (setCase_ == 1) {
foundBuilder_.mergeFrom(value);
} else {
foundBuilder_.setMessage(value);
}
}
setCase_ = 1;
return this;
}
/**
* .cache_client._SetContainsResponse._Found found = 1;
*/
public Builder clearFound() {
if (foundBuilder_ == null) {
if (setCase_ == 1) {
setCase_ = 0;
set_ = null;
onChanged();
}
} else {
if (setCase_ == 1) {
setCase_ = 0;
set_ = null;
}
foundBuilder_.clear();
}
return this;
}
/**
* .cache_client._SetContainsResponse._Found found = 1;
*/
public grpc.cache_client._SetContainsResponse._Found.Builder getFoundBuilder() {
return getFoundFieldBuilder().getBuilder();
}
/**
* .cache_client._SetContainsResponse._Found found = 1;
*/
@java.lang.Override
public grpc.cache_client._SetContainsResponse._FoundOrBuilder getFoundOrBuilder() {
if ((setCase_ == 1) && (foundBuilder_ != null)) {
return foundBuilder_.getMessageOrBuilder();
} else {
if (setCase_ == 1) {
return (grpc.cache_client._SetContainsResponse._Found) set_;
}
return grpc.cache_client._SetContainsResponse._Found.getDefaultInstance();
}
}
/**
* .cache_client._SetContainsResponse._Found found = 1;
*/
private com.google.protobuf.SingleFieldBuilderV3<
grpc.cache_client._SetContainsResponse._Found, grpc.cache_client._SetContainsResponse._Found.Builder, grpc.cache_client._SetContainsResponse._FoundOrBuilder>
getFoundFieldBuilder() {
if (foundBuilder_ == null) {
if (!(setCase_ == 1)) {
set_ = grpc.cache_client._SetContainsResponse._Found.getDefaultInstance();
}
foundBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
grpc.cache_client._SetContainsResponse._Found, grpc.cache_client._SetContainsResponse._Found.Builder, grpc.cache_client._SetContainsResponse._FoundOrBuilder>(
(grpc.cache_client._SetContainsResponse._Found) set_,
getParentForChildren(),
isClean());
set_ = null;
}
setCase_ = 1;
onChanged();
return foundBuilder_;
}
private com.google.protobuf.SingleFieldBuilderV3<
grpc.cache_client._SetContainsResponse._Missing, grpc.cache_client._SetContainsResponse._Missing.Builder, grpc.cache_client._SetContainsResponse._MissingOrBuilder> missingBuilder_;
/**
* .cache_client._SetContainsResponse._Missing missing = 2;
* @return Whether the missing field is set.
*/
@java.lang.Override
public boolean hasMissing() {
return setCase_ == 2;
}
/**
* .cache_client._SetContainsResponse._Missing missing = 2;
* @return The missing.
*/
@java.lang.Override
public grpc.cache_client._SetContainsResponse._Missing getMissing() {
if (missingBuilder_ == null) {
if (setCase_ == 2) {
return (grpc.cache_client._SetContainsResponse._Missing) set_;
}
return grpc.cache_client._SetContainsResponse._Missing.getDefaultInstance();
} else {
if (setCase_ == 2) {
return missingBuilder_.getMessage();
}
return grpc.cache_client._SetContainsResponse._Missing.getDefaultInstance();
}
}
/**
* .cache_client._SetContainsResponse._Missing missing = 2;
*/
public Builder setMissing(grpc.cache_client._SetContainsResponse._Missing value) {
if (missingBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
set_ = value;
onChanged();
} else {
missingBuilder_.setMessage(value);
}
setCase_ = 2;
return this;
}
/**
* .cache_client._SetContainsResponse._Missing missing = 2;
*/
public Builder setMissing(
grpc.cache_client._SetContainsResponse._Missing.Builder builderForValue) {
if (missingBuilder_ == null) {
set_ = builderForValue.build();
onChanged();
} else {
missingBuilder_.setMessage(builderForValue.build());
}
setCase_ = 2;
return this;
}
/**
* .cache_client._SetContainsResponse._Missing missing = 2;
*/
public Builder mergeMissing(grpc.cache_client._SetContainsResponse._Missing value) {
if (missingBuilder_ == null) {
if (setCase_ == 2 &&
set_ != grpc.cache_client._SetContainsResponse._Missing.getDefaultInstance()) {
set_ = grpc.cache_client._SetContainsResponse._Missing.newBuilder((grpc.cache_client._SetContainsResponse._Missing) set_)
.mergeFrom(value).buildPartial();
} else {
set_ = value;
}
onChanged();
} else {
if (setCase_ == 2) {
missingBuilder_.mergeFrom(value);
} else {
missingBuilder_.setMessage(value);
}
}
setCase_ = 2;
return this;
}
/**
* .cache_client._SetContainsResponse._Missing missing = 2;
*/
public Builder clearMissing() {
if (missingBuilder_ == null) {
if (setCase_ == 2) {
setCase_ = 0;
set_ = null;
onChanged();
}
} else {
if (setCase_ == 2) {
setCase_ = 0;
set_ = null;
}
missingBuilder_.clear();
}
return this;
}
/**
* .cache_client._SetContainsResponse._Missing missing = 2;
*/
public grpc.cache_client._SetContainsResponse._Missing.Builder getMissingBuilder() {
return getMissingFieldBuilder().getBuilder();
}
/**
* .cache_client._SetContainsResponse._Missing missing = 2;
*/
@java.lang.Override
public grpc.cache_client._SetContainsResponse._MissingOrBuilder getMissingOrBuilder() {
if ((setCase_ == 2) && (missingBuilder_ != null)) {
return missingBuilder_.getMessageOrBuilder();
} else {
if (setCase_ == 2) {
return (grpc.cache_client._SetContainsResponse._Missing) set_;
}
return grpc.cache_client._SetContainsResponse._Missing.getDefaultInstance();
}
}
/**
* .cache_client._SetContainsResponse._Missing missing = 2;
*/
private com.google.protobuf.SingleFieldBuilderV3<
grpc.cache_client._SetContainsResponse._Missing, grpc.cache_client._SetContainsResponse._Missing.Builder, grpc.cache_client._SetContainsResponse._MissingOrBuilder>
getMissingFieldBuilder() {
if (missingBuilder_ == null) {
if (!(setCase_ == 2)) {
set_ = grpc.cache_client._SetContainsResponse._Missing.getDefaultInstance();
}
missingBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
grpc.cache_client._SetContainsResponse._Missing, grpc.cache_client._SetContainsResponse._Missing.Builder, grpc.cache_client._SetContainsResponse._MissingOrBuilder>(
(grpc.cache_client._SetContainsResponse._Missing) set_,
getParentForChildren(),
isClean());
set_ = null;
}
setCase_ = 2;
onChanged();
return missingBuilder_;
}
@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:cache_client._SetContainsResponse)
}
// @@protoc_insertion_point(class_scope:cache_client._SetContainsResponse)
private static final grpc.cache_client._SetContainsResponse DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new grpc.cache_client._SetContainsResponse();
}
public static grpc.cache_client._SetContainsResponse getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser<_SetContainsResponse>
PARSER = new com.google.protobuf.AbstractParser<_SetContainsResponse>() {
@java.lang.Override
public _SetContainsResponse 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<_SetContainsResponse> parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser<_SetContainsResponse> getParserForType() {
return PARSER;
}
@java.lang.Override
public grpc.cache_client._SetContainsResponse getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}