grpc.cache_client._ListLengthResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of client-protos-jvm Show documentation
Show all versions of client-protos-jvm Show documentation
Kotlin protobuf protocols for the JVM 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._ListLengthResponse}
*/
public final class _ListLengthResponse extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:cache_client._ListLengthResponse)
_ListLengthResponseOrBuilder {
private static final long serialVersionUID = 0L;
// Use _ListLengthResponse.newBuilder() to construct.
private _ListLengthResponse(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private _ListLengthResponse() {
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new _ListLengthResponse();
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return grpc.cache_client.Cacheclient.internal_static_cache_client__ListLengthResponse_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return grpc.cache_client.Cacheclient.internal_static_cache_client__ListLengthResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
grpc.cache_client._ListLengthResponse.class, grpc.cache_client._ListLengthResponse.Builder.class);
}
public interface _FoundOrBuilder extends
// @@protoc_insertion_point(interface_extends:cache_client._ListLengthResponse._Found)
com.google.protobuf.MessageOrBuilder {
/**
* uint32 length = 1;
* @return The length.
*/
int getLength();
}
/**
* Protobuf type {@code cache_client._ListLengthResponse._Found}
*/
public static final class _Found extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:cache_client._ListLengthResponse._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() {
}
@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__ListLengthResponse__Found_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return grpc.cache_client.Cacheclient.internal_static_cache_client__ListLengthResponse__Found_fieldAccessorTable
.ensureFieldAccessorsInitialized(
grpc.cache_client._ListLengthResponse._Found.class, grpc.cache_client._ListLengthResponse._Found.Builder.class);
}
public static final int LENGTH_FIELD_NUMBER = 1;
private int length_ = 0;
/**
* uint32 length = 1;
* @return The length.
*/
@java.lang.Override
public int getLength() {
return length_;
}
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 (length_ != 0) {
output.writeUInt32(1, length_);
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (length_ != 0) {
size += com.google.protobuf.CodedOutputStream
.computeUInt32Size(1, length_);
}
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._ListLengthResponse._Found)) {
return super.equals(obj);
}
grpc.cache_client._ListLengthResponse._Found other = (grpc.cache_client._ListLengthResponse._Found) obj;
if (getLength()
!= other.getLength()) 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) + LENGTH_FIELD_NUMBER;
hash = (53 * hash) + getLength();
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static grpc.cache_client._ListLengthResponse._Found parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static grpc.cache_client._ListLengthResponse._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._ListLengthResponse._Found parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static grpc.cache_client._ListLengthResponse._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._ListLengthResponse._Found parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static grpc.cache_client._ListLengthResponse._Found parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static grpc.cache_client._ListLengthResponse._Found parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static grpc.cache_client._ListLengthResponse._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._ListLengthResponse._Found parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static grpc.cache_client._ListLengthResponse._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._ListLengthResponse._Found parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static grpc.cache_client._ListLengthResponse._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._ListLengthResponse._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._ListLengthResponse._Found}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:cache_client._ListLengthResponse._Found)
grpc.cache_client._ListLengthResponse._FoundOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return grpc.cache_client.Cacheclient.internal_static_cache_client__ListLengthResponse__Found_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return grpc.cache_client.Cacheclient.internal_static_cache_client__ListLengthResponse__Found_fieldAccessorTable
.ensureFieldAccessorsInitialized(
grpc.cache_client._ListLengthResponse._Found.class, grpc.cache_client._ListLengthResponse._Found.Builder.class);
}
// Construct using grpc.cache_client._ListLengthResponse._Found.newBuilder()
private Builder() {
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
length_ = 0;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return grpc.cache_client.Cacheclient.internal_static_cache_client__ListLengthResponse__Found_descriptor;
}
@java.lang.Override
public grpc.cache_client._ListLengthResponse._Found getDefaultInstanceForType() {
return grpc.cache_client._ListLengthResponse._Found.getDefaultInstance();
}
@java.lang.Override
public grpc.cache_client._ListLengthResponse._Found build() {
grpc.cache_client._ListLengthResponse._Found result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public grpc.cache_client._ListLengthResponse._Found buildPartial() {
grpc.cache_client._ListLengthResponse._Found result = new grpc.cache_client._ListLengthResponse._Found(this);
if (bitField0_ != 0) { buildPartial0(result); }
onBuilt();
return result;
}
private void buildPartial0(grpc.cache_client._ListLengthResponse._Found result) {
int from_bitField0_ = bitField0_;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.length_ = length_;
}
}
@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 grpc.cache_client._ListLengthResponse._Found) {
return mergeFrom((grpc.cache_client._ListLengthResponse._Found)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(grpc.cache_client._ListLengthResponse._Found other) {
if (other == grpc.cache_client._ListLengthResponse._Found.getDefaultInstance()) return this;
if (other.getLength() != 0) {
setLength(other.getLength());
}
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: {
length_ = input.readUInt32();
bitField0_ |= 0x00000001;
break;
} // case 8
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 length_ ;
/**
* uint32 length = 1;
* @return The length.
*/
@java.lang.Override
public int getLength() {
return length_;
}
/**
* uint32 length = 1;
* @param value The length to set.
* @return This builder for chaining.
*/
public Builder setLength(int value) {
length_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
* uint32 length = 1;
* @return This builder for chaining.
*/
public Builder clearLength() {
bitField0_ = (bitField0_ & ~0x00000001);
length_ = 0;
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._ListLengthResponse._Found)
}
// @@protoc_insertion_point(class_scope:cache_client._ListLengthResponse._Found)
private static final grpc.cache_client._ListLengthResponse._Found DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new grpc.cache_client._ListLengthResponse._Found();
}
public static grpc.cache_client._ListLengthResponse._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._ListLengthResponse._Found getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
public interface _MissingOrBuilder extends
// @@protoc_insertion_point(interface_extends:cache_client._ListLengthResponse._Missing)
com.google.protobuf.MessageOrBuilder {
}
/**
* Protobuf type {@code cache_client._ListLengthResponse._Missing}
*/
public static final class _Missing extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:cache_client._ListLengthResponse._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__ListLengthResponse__Missing_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return grpc.cache_client.Cacheclient.internal_static_cache_client__ListLengthResponse__Missing_fieldAccessorTable
.ensureFieldAccessorsInitialized(
grpc.cache_client._ListLengthResponse._Missing.class, grpc.cache_client._ListLengthResponse._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._ListLengthResponse._Missing)) {
return super.equals(obj);
}
grpc.cache_client._ListLengthResponse._Missing other = (grpc.cache_client._ListLengthResponse._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._ListLengthResponse._Missing parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static grpc.cache_client._ListLengthResponse._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._ListLengthResponse._Missing parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static grpc.cache_client._ListLengthResponse._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._ListLengthResponse._Missing parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static grpc.cache_client._ListLengthResponse._Missing parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static grpc.cache_client._ListLengthResponse._Missing parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static grpc.cache_client._ListLengthResponse._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._ListLengthResponse._Missing parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static grpc.cache_client._ListLengthResponse._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._ListLengthResponse._Missing parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static grpc.cache_client._ListLengthResponse._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._ListLengthResponse._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._ListLengthResponse._Missing}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:cache_client._ListLengthResponse._Missing)
grpc.cache_client._ListLengthResponse._MissingOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return grpc.cache_client.Cacheclient.internal_static_cache_client__ListLengthResponse__Missing_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return grpc.cache_client.Cacheclient.internal_static_cache_client__ListLengthResponse__Missing_fieldAccessorTable
.ensureFieldAccessorsInitialized(
grpc.cache_client._ListLengthResponse._Missing.class, grpc.cache_client._ListLengthResponse._Missing.Builder.class);
}
// Construct using grpc.cache_client._ListLengthResponse._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__ListLengthResponse__Missing_descriptor;
}
@java.lang.Override
public grpc.cache_client._ListLengthResponse._Missing getDefaultInstanceForType() {
return grpc.cache_client._ListLengthResponse._Missing.getDefaultInstance();
}
@java.lang.Override
public grpc.cache_client._ListLengthResponse._Missing build() {
grpc.cache_client._ListLengthResponse._Missing result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public grpc.cache_client._ListLengthResponse._Missing buildPartial() {
grpc.cache_client._ListLengthResponse._Missing result = new grpc.cache_client._ListLengthResponse._Missing(this);
onBuilt();
return result;
}
@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 grpc.cache_client._ListLengthResponse._Missing) {
return mergeFrom((grpc.cache_client._ListLengthResponse._Missing)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(grpc.cache_client._ListLengthResponse._Missing other) {
if (other == grpc.cache_client._ListLengthResponse._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._ListLengthResponse._Missing)
}
// @@protoc_insertion_point(class_scope:cache_client._ListLengthResponse._Missing)
private static final grpc.cache_client._ListLengthResponse._Missing DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new grpc.cache_client._ListLengthResponse._Missing();
}
public static grpc.cache_client._ListLengthResponse._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._ListLengthResponse._Missing getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
private int listCase_ = 0;
@SuppressWarnings("serial")
private java.lang.Object list_;
public enum ListCase
implements com.google.protobuf.Internal.EnumLite,
com.google.protobuf.AbstractMessage.InternalOneOfEnum {
FOUND(1),
MISSING(2),
LIST_NOT_SET(0);
private final int value;
private ListCase(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 ListCase valueOf(int value) {
return forNumber(value);
}
public static ListCase forNumber(int value) {
switch (value) {
case 1: return FOUND;
case 2: return MISSING;
case 0: return LIST_NOT_SET;
default: return null;
}
}
public int getNumber() {
return this.value;
}
};
public ListCase
getListCase() {
return ListCase.forNumber(
listCase_);
}
public static final int FOUND_FIELD_NUMBER = 1;
/**
* .cache_client._ListLengthResponse._Found found = 1;
* @return Whether the found field is set.
*/
@java.lang.Override
public boolean hasFound() {
return listCase_ == 1;
}
/**
* .cache_client._ListLengthResponse._Found found = 1;
* @return The found.
*/
@java.lang.Override
public grpc.cache_client._ListLengthResponse._Found getFound() {
if (listCase_ == 1) {
return (grpc.cache_client._ListLengthResponse._Found) list_;
}
return grpc.cache_client._ListLengthResponse._Found.getDefaultInstance();
}
/**
* .cache_client._ListLengthResponse._Found found = 1;
*/
@java.lang.Override
public grpc.cache_client._ListLengthResponse._FoundOrBuilder getFoundOrBuilder() {
if (listCase_ == 1) {
return (grpc.cache_client._ListLengthResponse._Found) list_;
}
return grpc.cache_client._ListLengthResponse._Found.getDefaultInstance();
}
public static final int MISSING_FIELD_NUMBER = 2;
/**
* .cache_client._ListLengthResponse._Missing missing = 2;
* @return Whether the missing field is set.
*/
@java.lang.Override
public boolean hasMissing() {
return listCase_ == 2;
}
/**
* .cache_client._ListLengthResponse._Missing missing = 2;
* @return The missing.
*/
@java.lang.Override
public grpc.cache_client._ListLengthResponse._Missing getMissing() {
if (listCase_ == 2) {
return (grpc.cache_client._ListLengthResponse._Missing) list_;
}
return grpc.cache_client._ListLengthResponse._Missing.getDefaultInstance();
}
/**
* .cache_client._ListLengthResponse._Missing missing = 2;
*/
@java.lang.Override
public grpc.cache_client._ListLengthResponse._MissingOrBuilder getMissingOrBuilder() {
if (listCase_ == 2) {
return (grpc.cache_client._ListLengthResponse._Missing) list_;
}
return grpc.cache_client._ListLengthResponse._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 (listCase_ == 1) {
output.writeMessage(1, (grpc.cache_client._ListLengthResponse._Found) list_);
}
if (listCase_ == 2) {
output.writeMessage(2, (grpc.cache_client._ListLengthResponse._Missing) list_);
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (listCase_ == 1) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, (grpc.cache_client._ListLengthResponse._Found) list_);
}
if (listCase_ == 2) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(2, (grpc.cache_client._ListLengthResponse._Missing) list_);
}
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._ListLengthResponse)) {
return super.equals(obj);
}
grpc.cache_client._ListLengthResponse other = (grpc.cache_client._ListLengthResponse) obj;
if (!getListCase().equals(other.getListCase())) return false;
switch (listCase_) {
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 (listCase_) {
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._ListLengthResponse parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static grpc.cache_client._ListLengthResponse 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._ListLengthResponse parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static grpc.cache_client._ListLengthResponse 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._ListLengthResponse parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static grpc.cache_client._ListLengthResponse parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static grpc.cache_client._ListLengthResponse parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static grpc.cache_client._ListLengthResponse 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._ListLengthResponse parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static grpc.cache_client._ListLengthResponse 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._ListLengthResponse parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static grpc.cache_client._ListLengthResponse 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._ListLengthResponse 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._ListLengthResponse}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:cache_client._ListLengthResponse)
grpc.cache_client._ListLengthResponseOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return grpc.cache_client.Cacheclient.internal_static_cache_client__ListLengthResponse_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return grpc.cache_client.Cacheclient.internal_static_cache_client__ListLengthResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
grpc.cache_client._ListLengthResponse.class, grpc.cache_client._ListLengthResponse.Builder.class);
}
// Construct using grpc.cache_client._ListLengthResponse.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();
}
listCase_ = 0;
list_ = null;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return grpc.cache_client.Cacheclient.internal_static_cache_client__ListLengthResponse_descriptor;
}
@java.lang.Override
public grpc.cache_client._ListLengthResponse getDefaultInstanceForType() {
return grpc.cache_client._ListLengthResponse.getDefaultInstance();
}
@java.lang.Override
public grpc.cache_client._ListLengthResponse build() {
grpc.cache_client._ListLengthResponse result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public grpc.cache_client._ListLengthResponse buildPartial() {
grpc.cache_client._ListLengthResponse result = new grpc.cache_client._ListLengthResponse(this);
if (bitField0_ != 0) { buildPartial0(result); }
buildPartialOneofs(result);
onBuilt();
return result;
}
private void buildPartial0(grpc.cache_client._ListLengthResponse result) {
int from_bitField0_ = bitField0_;
}
private void buildPartialOneofs(grpc.cache_client._ListLengthResponse result) {
result.listCase_ = listCase_;
result.list_ = this.list_;
if (listCase_ == 1 &&
foundBuilder_ != null) {
result.list_ = foundBuilder_.build();
}
if (listCase_ == 2 &&
missingBuilder_ != null) {
result.list_ = missingBuilder_.build();
}
}
@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 grpc.cache_client._ListLengthResponse) {
return mergeFrom((grpc.cache_client._ListLengthResponse)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(grpc.cache_client._ListLengthResponse other) {
if (other == grpc.cache_client._ListLengthResponse.getDefaultInstance()) return this;
switch (other.getListCase()) {
case FOUND: {
mergeFound(other.getFound());
break;
}
case MISSING: {
mergeMissing(other.getMissing());
break;
}
case LIST_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);
listCase_ = 1;
break;
} // case 10
case 18: {
input.readMessage(
getMissingFieldBuilder().getBuilder(),
extensionRegistry);
listCase_ = 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 listCase_ = 0;
private java.lang.Object list_;
public ListCase
getListCase() {
return ListCase.forNumber(
listCase_);
}
public Builder clearList() {
listCase_ = 0;
list_ = null;
onChanged();
return this;
}
private int bitField0_;
private com.google.protobuf.SingleFieldBuilderV3<
grpc.cache_client._ListLengthResponse._Found, grpc.cache_client._ListLengthResponse._Found.Builder, grpc.cache_client._ListLengthResponse._FoundOrBuilder> foundBuilder_;
/**
* .cache_client._ListLengthResponse._Found found = 1;
* @return Whether the found field is set.
*/
@java.lang.Override
public boolean hasFound() {
return listCase_ == 1;
}
/**
* .cache_client._ListLengthResponse._Found found = 1;
* @return The found.
*/
@java.lang.Override
public grpc.cache_client._ListLengthResponse._Found getFound() {
if (foundBuilder_ == null) {
if (listCase_ == 1) {
return (grpc.cache_client._ListLengthResponse._Found) list_;
}
return grpc.cache_client._ListLengthResponse._Found.getDefaultInstance();
} else {
if (listCase_ == 1) {
return foundBuilder_.getMessage();
}
return grpc.cache_client._ListLengthResponse._Found.getDefaultInstance();
}
}
/**
* .cache_client._ListLengthResponse._Found found = 1;
*/
public Builder setFound(grpc.cache_client._ListLengthResponse._Found value) {
if (foundBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
list_ = value;
onChanged();
} else {
foundBuilder_.setMessage(value);
}
listCase_ = 1;
return this;
}
/**
* .cache_client._ListLengthResponse._Found found = 1;
*/
public Builder setFound(
grpc.cache_client._ListLengthResponse._Found.Builder builderForValue) {
if (foundBuilder_ == null) {
list_ = builderForValue.build();
onChanged();
} else {
foundBuilder_.setMessage(builderForValue.build());
}
listCase_ = 1;
return this;
}
/**
* .cache_client._ListLengthResponse._Found found = 1;
*/
public Builder mergeFound(grpc.cache_client._ListLengthResponse._Found value) {
if (foundBuilder_ == null) {
if (listCase_ == 1 &&
list_ != grpc.cache_client._ListLengthResponse._Found.getDefaultInstance()) {
list_ = grpc.cache_client._ListLengthResponse._Found.newBuilder((grpc.cache_client._ListLengthResponse._Found) list_)
.mergeFrom(value).buildPartial();
} else {
list_ = value;
}
onChanged();
} else {
if (listCase_ == 1) {
foundBuilder_.mergeFrom(value);
} else {
foundBuilder_.setMessage(value);
}
}
listCase_ = 1;
return this;
}
/**
* .cache_client._ListLengthResponse._Found found = 1;
*/
public Builder clearFound() {
if (foundBuilder_ == null) {
if (listCase_ == 1) {
listCase_ = 0;
list_ = null;
onChanged();
}
} else {
if (listCase_ == 1) {
listCase_ = 0;
list_ = null;
}
foundBuilder_.clear();
}
return this;
}
/**
* .cache_client._ListLengthResponse._Found found = 1;
*/
public grpc.cache_client._ListLengthResponse._Found.Builder getFoundBuilder() {
return getFoundFieldBuilder().getBuilder();
}
/**
* .cache_client._ListLengthResponse._Found found = 1;
*/
@java.lang.Override
public grpc.cache_client._ListLengthResponse._FoundOrBuilder getFoundOrBuilder() {
if ((listCase_ == 1) && (foundBuilder_ != null)) {
return foundBuilder_.getMessageOrBuilder();
} else {
if (listCase_ == 1) {
return (grpc.cache_client._ListLengthResponse._Found) list_;
}
return grpc.cache_client._ListLengthResponse._Found.getDefaultInstance();
}
}
/**
* .cache_client._ListLengthResponse._Found found = 1;
*/
private com.google.protobuf.SingleFieldBuilderV3<
grpc.cache_client._ListLengthResponse._Found, grpc.cache_client._ListLengthResponse._Found.Builder, grpc.cache_client._ListLengthResponse._FoundOrBuilder>
getFoundFieldBuilder() {
if (foundBuilder_ == null) {
if (!(listCase_ == 1)) {
list_ = grpc.cache_client._ListLengthResponse._Found.getDefaultInstance();
}
foundBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
grpc.cache_client._ListLengthResponse._Found, grpc.cache_client._ListLengthResponse._Found.Builder, grpc.cache_client._ListLengthResponse._FoundOrBuilder>(
(grpc.cache_client._ListLengthResponse._Found) list_,
getParentForChildren(),
isClean());
list_ = null;
}
listCase_ = 1;
onChanged();
return foundBuilder_;
}
private com.google.protobuf.SingleFieldBuilderV3<
grpc.cache_client._ListLengthResponse._Missing, grpc.cache_client._ListLengthResponse._Missing.Builder, grpc.cache_client._ListLengthResponse._MissingOrBuilder> missingBuilder_;
/**
* .cache_client._ListLengthResponse._Missing missing = 2;
* @return Whether the missing field is set.
*/
@java.lang.Override
public boolean hasMissing() {
return listCase_ == 2;
}
/**
* .cache_client._ListLengthResponse._Missing missing = 2;
* @return The missing.
*/
@java.lang.Override
public grpc.cache_client._ListLengthResponse._Missing getMissing() {
if (missingBuilder_ == null) {
if (listCase_ == 2) {
return (grpc.cache_client._ListLengthResponse._Missing) list_;
}
return grpc.cache_client._ListLengthResponse._Missing.getDefaultInstance();
} else {
if (listCase_ == 2) {
return missingBuilder_.getMessage();
}
return grpc.cache_client._ListLengthResponse._Missing.getDefaultInstance();
}
}
/**
* .cache_client._ListLengthResponse._Missing missing = 2;
*/
public Builder setMissing(grpc.cache_client._ListLengthResponse._Missing value) {
if (missingBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
list_ = value;
onChanged();
} else {
missingBuilder_.setMessage(value);
}
listCase_ = 2;
return this;
}
/**
* .cache_client._ListLengthResponse._Missing missing = 2;
*/
public Builder setMissing(
grpc.cache_client._ListLengthResponse._Missing.Builder builderForValue) {
if (missingBuilder_ == null) {
list_ = builderForValue.build();
onChanged();
} else {
missingBuilder_.setMessage(builderForValue.build());
}
listCase_ = 2;
return this;
}
/**
* .cache_client._ListLengthResponse._Missing missing = 2;
*/
public Builder mergeMissing(grpc.cache_client._ListLengthResponse._Missing value) {
if (missingBuilder_ == null) {
if (listCase_ == 2 &&
list_ != grpc.cache_client._ListLengthResponse._Missing.getDefaultInstance()) {
list_ = grpc.cache_client._ListLengthResponse._Missing.newBuilder((grpc.cache_client._ListLengthResponse._Missing) list_)
.mergeFrom(value).buildPartial();
} else {
list_ = value;
}
onChanged();
} else {
if (listCase_ == 2) {
missingBuilder_.mergeFrom(value);
} else {
missingBuilder_.setMessage(value);
}
}
listCase_ = 2;
return this;
}
/**
* .cache_client._ListLengthResponse._Missing missing = 2;
*/
public Builder clearMissing() {
if (missingBuilder_ == null) {
if (listCase_ == 2) {
listCase_ = 0;
list_ = null;
onChanged();
}
} else {
if (listCase_ == 2) {
listCase_ = 0;
list_ = null;
}
missingBuilder_.clear();
}
return this;
}
/**
* .cache_client._ListLengthResponse._Missing missing = 2;
*/
public grpc.cache_client._ListLengthResponse._Missing.Builder getMissingBuilder() {
return getMissingFieldBuilder().getBuilder();
}
/**
* .cache_client._ListLengthResponse._Missing missing = 2;
*/
@java.lang.Override
public grpc.cache_client._ListLengthResponse._MissingOrBuilder getMissingOrBuilder() {
if ((listCase_ == 2) && (missingBuilder_ != null)) {
return missingBuilder_.getMessageOrBuilder();
} else {
if (listCase_ == 2) {
return (grpc.cache_client._ListLengthResponse._Missing) list_;
}
return grpc.cache_client._ListLengthResponse._Missing.getDefaultInstance();
}
}
/**
* .cache_client._ListLengthResponse._Missing missing = 2;
*/
private com.google.protobuf.SingleFieldBuilderV3<
grpc.cache_client._ListLengthResponse._Missing, grpc.cache_client._ListLengthResponse._Missing.Builder, grpc.cache_client._ListLengthResponse._MissingOrBuilder>
getMissingFieldBuilder() {
if (missingBuilder_ == null) {
if (!(listCase_ == 2)) {
list_ = grpc.cache_client._ListLengthResponse._Missing.getDefaultInstance();
}
missingBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
grpc.cache_client._ListLengthResponse._Missing, grpc.cache_client._ListLengthResponse._Missing.Builder, grpc.cache_client._ListLengthResponse._MissingOrBuilder>(
(grpc.cache_client._ListLengthResponse._Missing) list_,
getParentForChildren(),
isClean());
list_ = null;
}
listCase_ = 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._ListLengthResponse)
}
// @@protoc_insertion_point(class_scope:cache_client._ListLengthResponse)
private static final grpc.cache_client._ListLengthResponse DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new grpc.cache_client._ListLengthResponse();
}
public static grpc.cache_client._ListLengthResponse getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser<_ListLengthResponse>
PARSER = new com.google.protobuf.AbstractParser<_ListLengthResponse>() {
@java.lang.Override
public _ListLengthResponse 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<_ListLengthResponse> parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser<_ListLengthResponse> getParserForType() {
return PARSER;
}
@java.lang.Override
public grpc.cache_client._ListLengthResponse getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}