All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.scalar.db.rpc.Value Maven / Gradle / Ivy

The newest version!
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: scalardb.proto

package com.scalar.db.rpc;

/**
 * 
 * Value is deprecated as of release 3.6.0. Will be removed in release 5.0.0. Use Column, instead.
 * 
* * Protobuf type {@code rpc.Value} */ @java.lang.Deprecated public final class Value extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:rpc.Value) ValueOrBuilder { private static final long serialVersionUID = 0L; // Use Value.newBuilder() to construct. private Value(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private Value() { name_ = ""; } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance( UnusedPrivateParameter unused) { return new Value(); } @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return this.unknownFields; } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.scalar.db.rpc.ScalarDbProto.internal_static_rpc_Value_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.scalar.db.rpc.ScalarDbProto.internal_static_rpc_Value_fieldAccessorTable .ensureFieldAccessorsInitialized( com.scalar.db.rpc.Value.class, com.scalar.db.rpc.Value.Builder.class); } public interface TextValueOrBuilder extends // @@protoc_insertion_point(interface_extends:rpc.Value.TextValue) com.google.protobuf.MessageOrBuilder { /** * optional string value = 1; * @return Whether the value field is set. */ boolean hasValue(); /** * optional string value = 1; * @return The value. */ java.lang.String getValue(); /** * optional string value = 1; * @return The bytes for value. */ com.google.protobuf.ByteString getValueBytes(); } /** * Protobuf type {@code rpc.Value.TextValue} */ public static final class TextValue extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:rpc.Value.TextValue) TextValueOrBuilder { private static final long serialVersionUID = 0L; // Use TextValue.newBuilder() to construct. private TextValue(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private TextValue() { value_ = ""; } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance( UnusedPrivateParameter unused) { return new TextValue(); } @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return this.unknownFields; } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.scalar.db.rpc.ScalarDbProto.internal_static_rpc_Value_TextValue_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.scalar.db.rpc.ScalarDbProto.internal_static_rpc_Value_TextValue_fieldAccessorTable .ensureFieldAccessorsInitialized( com.scalar.db.rpc.Value.TextValue.class, com.scalar.db.rpc.Value.TextValue.Builder.class); } private int bitField0_; public static final int VALUE_FIELD_NUMBER = 1; @SuppressWarnings("serial") private volatile java.lang.Object value_ = ""; /** * optional string value = 1; * @return Whether the value field is set. */ @java.lang.Override public boolean hasValue() { return ((bitField0_ & 0x00000001) != 0); } /** * optional string value = 1; * @return The value. */ @java.lang.Override public java.lang.String getValue() { java.lang.Object ref = value_; if (ref instanceof java.lang.String) { return (java.lang.String) ref; } else { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); value_ = s; return s; } } /** * optional string value = 1; * @return The bytes for value. */ @java.lang.Override public com.google.protobuf.ByteString getValueBytes() { java.lang.Object ref = value_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); value_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } 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 (((bitField0_ & 0x00000001) != 0)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 1, value_); } getUnknownFields().writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (((bitField0_ & 0x00000001) != 0)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, value_); } size += getUnknownFields().getSerializedSize(); memoizedSize = size; return size; } @java.lang.Override public boolean equals(final java.lang.Object obj) { if (obj == this) { return true; } if (!(obj instanceof com.scalar.db.rpc.Value.TextValue)) { return super.equals(obj); } com.scalar.db.rpc.Value.TextValue other = (com.scalar.db.rpc.Value.TextValue) obj; if (hasValue() != other.hasValue()) return false; if (hasValue()) { if (!getValue() .equals(other.getValue())) 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 (hasValue()) { hash = (37 * hash) + VALUE_FIELD_NUMBER; hash = (53 * hash) + getValue().hashCode(); } hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; } public static com.scalar.db.rpc.Value.TextValue parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.scalar.db.rpc.Value.TextValue parseFrom( java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.scalar.db.rpc.Value.TextValue parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.scalar.db.rpc.Value.TextValue parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.scalar.db.rpc.Value.TextValue parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.scalar.db.rpc.Value.TextValue parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.scalar.db.rpc.Value.TextValue parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static com.scalar.db.rpc.Value.TextValue parseFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input, extensionRegistry); } public static com.scalar.db.rpc.Value.TextValue parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static com.scalar.db.rpc.Value.TextValue parseDelimitedFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input, extensionRegistry); } public static com.scalar.db.rpc.Value.TextValue parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static com.scalar.db.rpc.Value.TextValue parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input, extensionRegistry); } @java.lang.Override public Builder newBuilderForType() { return newBuilder(); } public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } public static Builder newBuilder(com.scalar.db.rpc.Value.TextValue 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 rpc.Value.TextValue} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:rpc.Value.TextValue) com.scalar.db.rpc.Value.TextValueOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.scalar.db.rpc.ScalarDbProto.internal_static_rpc_Value_TextValue_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.scalar.db.rpc.ScalarDbProto.internal_static_rpc_Value_TextValue_fieldAccessorTable .ensureFieldAccessorsInitialized( com.scalar.db.rpc.Value.TextValue.class, com.scalar.db.rpc.Value.TextValue.Builder.class); } // Construct using com.scalar.db.rpc.Value.TextValue.newBuilder() private Builder() { } private Builder( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); } @java.lang.Override public Builder clear() { super.clear(); bitField0_ = 0; value_ = ""; return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return com.scalar.db.rpc.ScalarDbProto.internal_static_rpc_Value_TextValue_descriptor; } @java.lang.Override public com.scalar.db.rpc.Value.TextValue getDefaultInstanceForType() { return com.scalar.db.rpc.Value.TextValue.getDefaultInstance(); } @java.lang.Override public com.scalar.db.rpc.Value.TextValue build() { com.scalar.db.rpc.Value.TextValue result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public com.scalar.db.rpc.Value.TextValue buildPartial() { com.scalar.db.rpc.Value.TextValue result = new com.scalar.db.rpc.Value.TextValue(this); if (bitField0_ != 0) { buildPartial0(result); } onBuilt(); return result; } private void buildPartial0(com.scalar.db.rpc.Value.TextValue result) { int from_bitField0_ = bitField0_; int to_bitField0_ = 0; if (((from_bitField0_ & 0x00000001) != 0)) { result.value_ = value_; to_bitField0_ |= 0x00000001; } result.bitField0_ |= to_bitField0_; } @java.lang.Override public Builder clone() { return super.clone(); } @java.lang.Override public Builder setField( com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { return super.setField(field, value); } @java.lang.Override public Builder clearField( com.google.protobuf.Descriptors.FieldDescriptor field) { return super.clearField(field); } @java.lang.Override public Builder clearOneof( com.google.protobuf.Descriptors.OneofDescriptor oneof) { return super.clearOneof(oneof); } @java.lang.Override public Builder setRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { return super.setRepeatedField(field, index, value); } @java.lang.Override public Builder addRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { return super.addRepeatedField(field, value); } @java.lang.Override public Builder mergeFrom(com.google.protobuf.Message other) { if (other instanceof com.scalar.db.rpc.Value.TextValue) { return mergeFrom((com.scalar.db.rpc.Value.TextValue)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(com.scalar.db.rpc.Value.TextValue other) { if (other == com.scalar.db.rpc.Value.TextValue.getDefaultInstance()) return this; if (other.hasValue()) { value_ = other.value_; bitField0_ |= 0x00000001; 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 10: { value_ = input.readStringRequireUtf8(); bitField0_ |= 0x00000001; 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 java.lang.Object value_ = ""; /** * optional string value = 1; * @return Whether the value field is set. */ public boolean hasValue() { return ((bitField0_ & 0x00000001) != 0); } /** * optional string value = 1; * @return The value. */ public java.lang.String getValue() { java.lang.Object ref = value_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); value_ = s; return s; } else { return (java.lang.String) ref; } } /** * optional string value = 1; * @return The bytes for value. */ public com.google.protobuf.ByteString getValueBytes() { java.lang.Object ref = value_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); value_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** * optional string value = 1; * @param value The value to set. * @return This builder for chaining. */ public Builder setValue( java.lang.String value) { if (value == null) { throw new NullPointerException(); } value_ = value; bitField0_ |= 0x00000001; onChanged(); return this; } /** * optional string value = 1; * @return This builder for chaining. */ public Builder clearValue() { value_ = getDefaultInstance().getValue(); bitField0_ = (bitField0_ & ~0x00000001); onChanged(); return this; } /** * optional string value = 1; * @param value The bytes for value to set. * @return This builder for chaining. */ public Builder setValueBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); value_ = value; 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:rpc.Value.TextValue) } // @@protoc_insertion_point(class_scope:rpc.Value.TextValue) private static final com.scalar.db.rpc.Value.TextValue DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new com.scalar.db.rpc.Value.TextValue(); } public static com.scalar.db.rpc.Value.TextValue getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public TextValue parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { Builder builder = newBuilder(); try { builder.mergeFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { throw e.setUnfinishedMessage(builder.buildPartial()); } catch (com.google.protobuf.UninitializedMessageException e) { throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); } catch (java.io.IOException e) { throw new com.google.protobuf.InvalidProtocolBufferException(e) .setUnfinishedMessage(builder.buildPartial()); } return builder.buildPartial(); } }; public static com.google.protobuf.Parser parser() { return PARSER; } @java.lang.Override public com.google.protobuf.Parser getParserForType() { return PARSER; } @java.lang.Override public com.scalar.db.rpc.Value.TextValue getDefaultInstanceForType() { return DEFAULT_INSTANCE; } } public interface BlobValueOrBuilder extends // @@protoc_insertion_point(interface_extends:rpc.Value.BlobValue) com.google.protobuf.MessageOrBuilder { /** * optional bytes value = 1; * @return Whether the value field is set. */ boolean hasValue(); /** * optional bytes value = 1; * @return The value. */ com.google.protobuf.ByteString getValue(); } /** * Protobuf type {@code rpc.Value.BlobValue} */ public static final class BlobValue extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:rpc.Value.BlobValue) BlobValueOrBuilder { private static final long serialVersionUID = 0L; // Use BlobValue.newBuilder() to construct. private BlobValue(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private BlobValue() { value_ = com.google.protobuf.ByteString.EMPTY; } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance( UnusedPrivateParameter unused) { return new BlobValue(); } @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return this.unknownFields; } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.scalar.db.rpc.ScalarDbProto.internal_static_rpc_Value_BlobValue_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.scalar.db.rpc.ScalarDbProto.internal_static_rpc_Value_BlobValue_fieldAccessorTable .ensureFieldAccessorsInitialized( com.scalar.db.rpc.Value.BlobValue.class, com.scalar.db.rpc.Value.BlobValue.Builder.class); } private int bitField0_; public static final int VALUE_FIELD_NUMBER = 1; private com.google.protobuf.ByteString value_ = com.google.protobuf.ByteString.EMPTY; /** * optional bytes value = 1; * @return Whether the value field is set. */ @java.lang.Override public boolean hasValue() { return ((bitField0_ & 0x00000001) != 0); } /** * optional bytes value = 1; * @return The value. */ @java.lang.Override public com.google.protobuf.ByteString getValue() { return value_; } 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 (((bitField0_ & 0x00000001) != 0)) { output.writeBytes(1, value_); } getUnknownFields().writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (((bitField0_ & 0x00000001) != 0)) { size += com.google.protobuf.CodedOutputStream .computeBytesSize(1, value_); } size += getUnknownFields().getSerializedSize(); memoizedSize = size; return size; } @java.lang.Override public boolean equals(final java.lang.Object obj) { if (obj == this) { return true; } if (!(obj instanceof com.scalar.db.rpc.Value.BlobValue)) { return super.equals(obj); } com.scalar.db.rpc.Value.BlobValue other = (com.scalar.db.rpc.Value.BlobValue) obj; if (hasValue() != other.hasValue()) return false; if (hasValue()) { if (!getValue() .equals(other.getValue())) 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 (hasValue()) { hash = (37 * hash) + VALUE_FIELD_NUMBER; hash = (53 * hash) + getValue().hashCode(); } hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; } public static com.scalar.db.rpc.Value.BlobValue parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.scalar.db.rpc.Value.BlobValue parseFrom( java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.scalar.db.rpc.Value.BlobValue parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.scalar.db.rpc.Value.BlobValue parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.scalar.db.rpc.Value.BlobValue parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.scalar.db.rpc.Value.BlobValue parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.scalar.db.rpc.Value.BlobValue parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static com.scalar.db.rpc.Value.BlobValue parseFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input, extensionRegistry); } public static com.scalar.db.rpc.Value.BlobValue parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static com.scalar.db.rpc.Value.BlobValue parseDelimitedFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input, extensionRegistry); } public static com.scalar.db.rpc.Value.BlobValue parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static com.scalar.db.rpc.Value.BlobValue parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input, extensionRegistry); } @java.lang.Override public Builder newBuilderForType() { return newBuilder(); } public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } public static Builder newBuilder(com.scalar.db.rpc.Value.BlobValue 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 rpc.Value.BlobValue} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:rpc.Value.BlobValue) com.scalar.db.rpc.Value.BlobValueOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.scalar.db.rpc.ScalarDbProto.internal_static_rpc_Value_BlobValue_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.scalar.db.rpc.ScalarDbProto.internal_static_rpc_Value_BlobValue_fieldAccessorTable .ensureFieldAccessorsInitialized( com.scalar.db.rpc.Value.BlobValue.class, com.scalar.db.rpc.Value.BlobValue.Builder.class); } // Construct using com.scalar.db.rpc.Value.BlobValue.newBuilder() private Builder() { } private Builder( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); } @java.lang.Override public Builder clear() { super.clear(); bitField0_ = 0; value_ = com.google.protobuf.ByteString.EMPTY; return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return com.scalar.db.rpc.ScalarDbProto.internal_static_rpc_Value_BlobValue_descriptor; } @java.lang.Override public com.scalar.db.rpc.Value.BlobValue getDefaultInstanceForType() { return com.scalar.db.rpc.Value.BlobValue.getDefaultInstance(); } @java.lang.Override public com.scalar.db.rpc.Value.BlobValue build() { com.scalar.db.rpc.Value.BlobValue result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public com.scalar.db.rpc.Value.BlobValue buildPartial() { com.scalar.db.rpc.Value.BlobValue result = new com.scalar.db.rpc.Value.BlobValue(this); if (bitField0_ != 0) { buildPartial0(result); } onBuilt(); return result; } private void buildPartial0(com.scalar.db.rpc.Value.BlobValue result) { int from_bitField0_ = bitField0_; int to_bitField0_ = 0; if (((from_bitField0_ & 0x00000001) != 0)) { result.value_ = value_; to_bitField0_ |= 0x00000001; } result.bitField0_ |= to_bitField0_; } @java.lang.Override public Builder clone() { return super.clone(); } @java.lang.Override public Builder setField( com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { return super.setField(field, value); } @java.lang.Override public Builder clearField( com.google.protobuf.Descriptors.FieldDescriptor field) { return super.clearField(field); } @java.lang.Override public Builder clearOneof( com.google.protobuf.Descriptors.OneofDescriptor oneof) { return super.clearOneof(oneof); } @java.lang.Override public Builder setRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { return super.setRepeatedField(field, index, value); } @java.lang.Override public Builder addRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { return super.addRepeatedField(field, value); } @java.lang.Override public Builder mergeFrom(com.google.protobuf.Message other) { if (other instanceof com.scalar.db.rpc.Value.BlobValue) { return mergeFrom((com.scalar.db.rpc.Value.BlobValue)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(com.scalar.db.rpc.Value.BlobValue other) { if (other == com.scalar.db.rpc.Value.BlobValue.getDefaultInstance()) return this; if (other.hasValue()) { setValue(other.getValue()); } 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: { value_ = input.readBytes(); bitField0_ |= 0x00000001; 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.ByteString value_ = com.google.protobuf.ByteString.EMPTY; /** * optional bytes value = 1; * @return Whether the value field is set. */ @java.lang.Override public boolean hasValue() { return ((bitField0_ & 0x00000001) != 0); } /** * optional bytes value = 1; * @return The value. */ @java.lang.Override public com.google.protobuf.ByteString getValue() { return value_; } /** * optional bytes value = 1; * @param value The value to set. * @return This builder for chaining. */ public Builder setValue(com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } value_ = value; bitField0_ |= 0x00000001; onChanged(); return this; } /** * optional bytes value = 1; * @return This builder for chaining. */ public Builder clearValue() { bitField0_ = (bitField0_ & ~0x00000001); value_ = getDefaultInstance().getValue(); 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:rpc.Value.BlobValue) } // @@protoc_insertion_point(class_scope:rpc.Value.BlobValue) private static final com.scalar.db.rpc.Value.BlobValue DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new com.scalar.db.rpc.Value.BlobValue(); } public static com.scalar.db.rpc.Value.BlobValue getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public BlobValue parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { Builder builder = newBuilder(); try { builder.mergeFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { throw e.setUnfinishedMessage(builder.buildPartial()); } catch (com.google.protobuf.UninitializedMessageException e) { throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); } catch (java.io.IOException e) { throw new com.google.protobuf.InvalidProtocolBufferException(e) .setUnfinishedMessage(builder.buildPartial()); } return builder.buildPartial(); } }; public static com.google.protobuf.Parser parser() { return PARSER; } @java.lang.Override public com.google.protobuf.Parser getParserForType() { return PARSER; } @java.lang.Override public com.scalar.db.rpc.Value.BlobValue getDefaultInstanceForType() { return DEFAULT_INSTANCE; } } private int valueCase_ = 0; private java.lang.Object value_; public enum ValueCase implements com.google.protobuf.Internal.EnumLite, com.google.protobuf.AbstractMessage.InternalOneOfEnum { BOOLEAN_VALUE(2), INT_VALUE(3), BIGINT_VALUE(4), FLOAT_VALUE(5), DOUBLE_VALUE(6), TEXT_VALUE(7), BLOB_VALUE(8), VALUE_NOT_SET(0); private final int value; private ValueCase(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 ValueCase valueOf(int value) { return forNumber(value); } public static ValueCase forNumber(int value) { switch (value) { case 2: return BOOLEAN_VALUE; case 3: return INT_VALUE; case 4: return BIGINT_VALUE; case 5: return FLOAT_VALUE; case 6: return DOUBLE_VALUE; case 7: return TEXT_VALUE; case 8: return BLOB_VALUE; case 0: return VALUE_NOT_SET; default: return null; } } public int getNumber() { return this.value; } }; public ValueCase getValueCase() { return ValueCase.forNumber( valueCase_); } public static final int NAME_FIELD_NUMBER = 1; @SuppressWarnings("serial") private volatile java.lang.Object name_ = ""; /** * string name = 1; * @return The name. */ @java.lang.Override public java.lang.String getName() { java.lang.Object ref = name_; if (ref instanceof java.lang.String) { return (java.lang.String) ref; } else { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); name_ = s; return s; } } /** * string name = 1; * @return The bytes for name. */ @java.lang.Override public com.google.protobuf.ByteString getNameBytes() { java.lang.Object ref = name_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); name_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int BOOLEAN_VALUE_FIELD_NUMBER = 2; /** * bool boolean_value = 2; * @return Whether the booleanValue field is set. */ @java.lang.Override public boolean hasBooleanValue() { return valueCase_ == 2; } /** * bool boolean_value = 2; * @return The booleanValue. */ @java.lang.Override public boolean getBooleanValue() { if (valueCase_ == 2) { return (java.lang.Boolean) value_; } return false; } public static final int INT_VALUE_FIELD_NUMBER = 3; /** * int32 int_value = 3; * @return Whether the intValue field is set. */ @java.lang.Override public boolean hasIntValue() { return valueCase_ == 3; } /** * int32 int_value = 3; * @return The intValue. */ @java.lang.Override public int getIntValue() { if (valueCase_ == 3) { return (java.lang.Integer) value_; } return 0; } public static final int BIGINT_VALUE_FIELD_NUMBER = 4; /** * int64 bigint_value = 4; * @return Whether the bigintValue field is set. */ @java.lang.Override public boolean hasBigintValue() { return valueCase_ == 4; } /** * int64 bigint_value = 4; * @return The bigintValue. */ @java.lang.Override public long getBigintValue() { if (valueCase_ == 4) { return (java.lang.Long) value_; } return 0L; } public static final int FLOAT_VALUE_FIELD_NUMBER = 5; /** * float float_value = 5; * @return Whether the floatValue field is set. */ @java.lang.Override public boolean hasFloatValue() { return valueCase_ == 5; } /** * float float_value = 5; * @return The floatValue. */ @java.lang.Override public float getFloatValue() { if (valueCase_ == 5) { return (java.lang.Float) value_; } return 0F; } public static final int DOUBLE_VALUE_FIELD_NUMBER = 6; /** * double double_value = 6; * @return Whether the doubleValue field is set. */ @java.lang.Override public boolean hasDoubleValue() { return valueCase_ == 6; } /** * double double_value = 6; * @return The doubleValue. */ @java.lang.Override public double getDoubleValue() { if (valueCase_ == 6) { return (java.lang.Double) value_; } return 0D; } public static final int TEXT_VALUE_FIELD_NUMBER = 7; /** * .rpc.Value.TextValue text_value = 7; * @return Whether the textValue field is set. */ @java.lang.Override public boolean hasTextValue() { return valueCase_ == 7; } /** * .rpc.Value.TextValue text_value = 7; * @return The textValue. */ @java.lang.Override public com.scalar.db.rpc.Value.TextValue getTextValue() { if (valueCase_ == 7) { return (com.scalar.db.rpc.Value.TextValue) value_; } return com.scalar.db.rpc.Value.TextValue.getDefaultInstance(); } /** * .rpc.Value.TextValue text_value = 7; */ @java.lang.Override public com.scalar.db.rpc.Value.TextValueOrBuilder getTextValueOrBuilder() { if (valueCase_ == 7) { return (com.scalar.db.rpc.Value.TextValue) value_; } return com.scalar.db.rpc.Value.TextValue.getDefaultInstance(); } public static final int BLOB_VALUE_FIELD_NUMBER = 8; /** * .rpc.Value.BlobValue blob_value = 8; * @return Whether the blobValue field is set. */ @java.lang.Override public boolean hasBlobValue() { return valueCase_ == 8; } /** * .rpc.Value.BlobValue blob_value = 8; * @return The blobValue. */ @java.lang.Override public com.scalar.db.rpc.Value.BlobValue getBlobValue() { if (valueCase_ == 8) { return (com.scalar.db.rpc.Value.BlobValue) value_; } return com.scalar.db.rpc.Value.BlobValue.getDefaultInstance(); } /** * .rpc.Value.BlobValue blob_value = 8; */ @java.lang.Override public com.scalar.db.rpc.Value.BlobValueOrBuilder getBlobValueOrBuilder() { if (valueCase_ == 8) { return (com.scalar.db.rpc.Value.BlobValue) value_; } return com.scalar.db.rpc.Value.BlobValue.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 (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(name_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 1, name_); } if (valueCase_ == 2) { output.writeBool( 2, (boolean)((java.lang.Boolean) value_)); } if (valueCase_ == 3) { output.writeInt32( 3, (int)((java.lang.Integer) value_)); } if (valueCase_ == 4) { output.writeInt64( 4, (long)((java.lang.Long) value_)); } if (valueCase_ == 5) { output.writeFloat( 5, (float)((java.lang.Float) value_)); } if (valueCase_ == 6) { output.writeDouble( 6, (double)((java.lang.Double) value_)); } if (valueCase_ == 7) { output.writeMessage(7, (com.scalar.db.rpc.Value.TextValue) value_); } if (valueCase_ == 8) { output.writeMessage(8, (com.scalar.db.rpc.Value.BlobValue) value_); } getUnknownFields().writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(name_)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, name_); } if (valueCase_ == 2) { size += com.google.protobuf.CodedOutputStream .computeBoolSize( 2, (boolean)((java.lang.Boolean) value_)); } if (valueCase_ == 3) { size += com.google.protobuf.CodedOutputStream .computeInt32Size( 3, (int)((java.lang.Integer) value_)); } if (valueCase_ == 4) { size += com.google.protobuf.CodedOutputStream .computeInt64Size( 4, (long)((java.lang.Long) value_)); } if (valueCase_ == 5) { size += com.google.protobuf.CodedOutputStream .computeFloatSize( 5, (float)((java.lang.Float) value_)); } if (valueCase_ == 6) { size += com.google.protobuf.CodedOutputStream .computeDoubleSize( 6, (double)((java.lang.Double) value_)); } if (valueCase_ == 7) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(7, (com.scalar.db.rpc.Value.TextValue) value_); } if (valueCase_ == 8) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(8, (com.scalar.db.rpc.Value.BlobValue) value_); } size += getUnknownFields().getSerializedSize(); memoizedSize = size; return size; } @java.lang.Override public boolean equals(final java.lang.Object obj) { if (obj == this) { return true; } if (!(obj instanceof com.scalar.db.rpc.Value)) { return super.equals(obj); } com.scalar.db.rpc.Value other = (com.scalar.db.rpc.Value) obj; if (!getName() .equals(other.getName())) return false; if (!getValueCase().equals(other.getValueCase())) return false; switch (valueCase_) { case 2: if (getBooleanValue() != other.getBooleanValue()) return false; break; case 3: if (getIntValue() != other.getIntValue()) return false; break; case 4: if (getBigintValue() != other.getBigintValue()) return false; break; case 5: if (java.lang.Float.floatToIntBits(getFloatValue()) != java.lang.Float.floatToIntBits( other.getFloatValue())) return false; break; case 6: if (java.lang.Double.doubleToLongBits(getDoubleValue()) != java.lang.Double.doubleToLongBits( other.getDoubleValue())) return false; break; case 7: if (!getTextValue() .equals(other.getTextValue())) return false; break; case 8: if (!getBlobValue() .equals(other.getBlobValue())) 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(); hash = (37 * hash) + NAME_FIELD_NUMBER; hash = (53 * hash) + getName().hashCode(); switch (valueCase_) { case 2: hash = (37 * hash) + BOOLEAN_VALUE_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( getBooleanValue()); break; case 3: hash = (37 * hash) + INT_VALUE_FIELD_NUMBER; hash = (53 * hash) + getIntValue(); break; case 4: hash = (37 * hash) + BIGINT_VALUE_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashLong( getBigintValue()); break; case 5: hash = (37 * hash) + FLOAT_VALUE_FIELD_NUMBER; hash = (53 * hash) + java.lang.Float.floatToIntBits( getFloatValue()); break; case 6: hash = (37 * hash) + DOUBLE_VALUE_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashLong( java.lang.Double.doubleToLongBits(getDoubleValue())); break; case 7: hash = (37 * hash) + TEXT_VALUE_FIELD_NUMBER; hash = (53 * hash) + getTextValue().hashCode(); break; case 8: hash = (37 * hash) + BLOB_VALUE_FIELD_NUMBER; hash = (53 * hash) + getBlobValue().hashCode(); break; case 0: default: } hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; } public static com.scalar.db.rpc.Value parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.scalar.db.rpc.Value parseFrom( java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.scalar.db.rpc.Value parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.scalar.db.rpc.Value parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.scalar.db.rpc.Value parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.scalar.db.rpc.Value parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.scalar.db.rpc.Value parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static com.scalar.db.rpc.Value parseFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input, extensionRegistry); } public static com.scalar.db.rpc.Value parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static com.scalar.db.rpc.Value parseDelimitedFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input, extensionRegistry); } public static com.scalar.db.rpc.Value parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static com.scalar.db.rpc.Value parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input, extensionRegistry); } @java.lang.Override public Builder newBuilderForType() { return newBuilder(); } public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } public static Builder newBuilder(com.scalar.db.rpc.Value 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; } /** *
   * Value is deprecated as of release 3.6.0. Will be removed in release 5.0.0. Use Column, instead.
   * 
* * Protobuf type {@code rpc.Value} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:rpc.Value) com.scalar.db.rpc.ValueOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.scalar.db.rpc.ScalarDbProto.internal_static_rpc_Value_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.scalar.db.rpc.ScalarDbProto.internal_static_rpc_Value_fieldAccessorTable .ensureFieldAccessorsInitialized( com.scalar.db.rpc.Value.class, com.scalar.db.rpc.Value.Builder.class); } // Construct using com.scalar.db.rpc.Value.newBuilder() private Builder() { } private Builder( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); } @java.lang.Override public Builder clear() { super.clear(); bitField0_ = 0; name_ = ""; if (textValueBuilder_ != null) { textValueBuilder_.clear(); } if (blobValueBuilder_ != null) { blobValueBuilder_.clear(); } valueCase_ = 0; value_ = null; return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return com.scalar.db.rpc.ScalarDbProto.internal_static_rpc_Value_descriptor; } @java.lang.Override public com.scalar.db.rpc.Value getDefaultInstanceForType() { return com.scalar.db.rpc.Value.getDefaultInstance(); } @java.lang.Override public com.scalar.db.rpc.Value build() { com.scalar.db.rpc.Value result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public com.scalar.db.rpc.Value buildPartial() { com.scalar.db.rpc.Value result = new com.scalar.db.rpc.Value(this); if (bitField0_ != 0) { buildPartial0(result); } buildPartialOneofs(result); onBuilt(); return result; } private void buildPartial0(com.scalar.db.rpc.Value result) { int from_bitField0_ = bitField0_; if (((from_bitField0_ & 0x00000001) != 0)) { result.name_ = name_; } } private void buildPartialOneofs(com.scalar.db.rpc.Value result) { result.valueCase_ = valueCase_; result.value_ = this.value_; if (valueCase_ == 7 && textValueBuilder_ != null) { result.value_ = textValueBuilder_.build(); } if (valueCase_ == 8 && blobValueBuilder_ != null) { result.value_ = blobValueBuilder_.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 com.scalar.db.rpc.Value) { return mergeFrom((com.scalar.db.rpc.Value)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(com.scalar.db.rpc.Value other) { if (other == com.scalar.db.rpc.Value.getDefaultInstance()) return this; if (!other.getName().isEmpty()) { name_ = other.name_; bitField0_ |= 0x00000001; onChanged(); } switch (other.getValueCase()) { case BOOLEAN_VALUE: { setBooleanValue(other.getBooleanValue()); break; } case INT_VALUE: { setIntValue(other.getIntValue()); break; } case BIGINT_VALUE: { setBigintValue(other.getBigintValue()); break; } case FLOAT_VALUE: { setFloatValue(other.getFloatValue()); break; } case DOUBLE_VALUE: { setDoubleValue(other.getDoubleValue()); break; } case TEXT_VALUE: { mergeTextValue(other.getTextValue()); break; } case BLOB_VALUE: { mergeBlobValue(other.getBlobValue()); break; } case VALUE_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: { name_ = input.readStringRequireUtf8(); bitField0_ |= 0x00000001; break; } // case 10 case 16: { value_ = input.readBool(); valueCase_ = 2; break; } // case 16 case 24: { value_ = input.readInt32(); valueCase_ = 3; break; } // case 24 case 32: { value_ = input.readInt64(); valueCase_ = 4; break; } // case 32 case 45: { value_ = input.readFloat(); valueCase_ = 5; break; } // case 45 case 49: { value_ = input.readDouble(); valueCase_ = 6; break; } // case 49 case 58: { input.readMessage( getTextValueFieldBuilder().getBuilder(), extensionRegistry); valueCase_ = 7; break; } // case 58 case 66: { input.readMessage( getBlobValueFieldBuilder().getBuilder(), extensionRegistry); valueCase_ = 8; break; } // case 66 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 valueCase_ = 0; private java.lang.Object value_; public ValueCase getValueCase() { return ValueCase.forNumber( valueCase_); } public Builder clearValue() { valueCase_ = 0; value_ = null; onChanged(); return this; } private int bitField0_; private java.lang.Object name_ = ""; /** * string name = 1; * @return The name. */ public java.lang.String getName() { java.lang.Object ref = name_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); name_ = s; return s; } else { return (java.lang.String) ref; } } /** * string name = 1; * @return The bytes for name. */ public com.google.protobuf.ByteString getNameBytes() { java.lang.Object ref = name_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); name_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** * string name = 1; * @param value The name to set. * @return This builder for chaining. */ public Builder setName( java.lang.String value) { if (value == null) { throw new NullPointerException(); } name_ = value; bitField0_ |= 0x00000001; onChanged(); return this; } /** * string name = 1; * @return This builder for chaining. */ public Builder clearName() { name_ = getDefaultInstance().getName(); bitField0_ = (bitField0_ & ~0x00000001); onChanged(); return this; } /** * string name = 1; * @param value The bytes for name to set. * @return This builder for chaining. */ public Builder setNameBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); name_ = value; bitField0_ |= 0x00000001; onChanged(); return this; } /** * bool boolean_value = 2; * @return Whether the booleanValue field is set. */ public boolean hasBooleanValue() { return valueCase_ == 2; } /** * bool boolean_value = 2; * @return The booleanValue. */ public boolean getBooleanValue() { if (valueCase_ == 2) { return (java.lang.Boolean) value_; } return false; } /** * bool boolean_value = 2; * @param value The booleanValue to set. * @return This builder for chaining. */ public Builder setBooleanValue(boolean value) { valueCase_ = 2; value_ = value; onChanged(); return this; } /** * bool boolean_value = 2; * @return This builder for chaining. */ public Builder clearBooleanValue() { if (valueCase_ == 2) { valueCase_ = 0; value_ = null; onChanged(); } return this; } /** * int32 int_value = 3; * @return Whether the intValue field is set. */ public boolean hasIntValue() { return valueCase_ == 3; } /** * int32 int_value = 3; * @return The intValue. */ public int getIntValue() { if (valueCase_ == 3) { return (java.lang.Integer) value_; } return 0; } /** * int32 int_value = 3; * @param value The intValue to set. * @return This builder for chaining. */ public Builder setIntValue(int value) { valueCase_ = 3; value_ = value; onChanged(); return this; } /** * int32 int_value = 3; * @return This builder for chaining. */ public Builder clearIntValue() { if (valueCase_ == 3) { valueCase_ = 0; value_ = null; onChanged(); } return this; } /** * int64 bigint_value = 4; * @return Whether the bigintValue field is set. */ public boolean hasBigintValue() { return valueCase_ == 4; } /** * int64 bigint_value = 4; * @return The bigintValue. */ public long getBigintValue() { if (valueCase_ == 4) { return (java.lang.Long) value_; } return 0L; } /** * int64 bigint_value = 4; * @param value The bigintValue to set. * @return This builder for chaining. */ public Builder setBigintValue(long value) { valueCase_ = 4; value_ = value; onChanged(); return this; } /** * int64 bigint_value = 4; * @return This builder for chaining. */ public Builder clearBigintValue() { if (valueCase_ == 4) { valueCase_ = 0; value_ = null; onChanged(); } return this; } /** * float float_value = 5; * @return Whether the floatValue field is set. */ public boolean hasFloatValue() { return valueCase_ == 5; } /** * float float_value = 5; * @return The floatValue. */ public float getFloatValue() { if (valueCase_ == 5) { return (java.lang.Float) value_; } return 0F; } /** * float float_value = 5; * @param value The floatValue to set. * @return This builder for chaining. */ public Builder setFloatValue(float value) { valueCase_ = 5; value_ = value; onChanged(); return this; } /** * float float_value = 5; * @return This builder for chaining. */ public Builder clearFloatValue() { if (valueCase_ == 5) { valueCase_ = 0; value_ = null; onChanged(); } return this; } /** * double double_value = 6; * @return Whether the doubleValue field is set. */ public boolean hasDoubleValue() { return valueCase_ == 6; } /** * double double_value = 6; * @return The doubleValue. */ public double getDoubleValue() { if (valueCase_ == 6) { return (java.lang.Double) value_; } return 0D; } /** * double double_value = 6; * @param value The doubleValue to set. * @return This builder for chaining. */ public Builder setDoubleValue(double value) { valueCase_ = 6; value_ = value; onChanged(); return this; } /** * double double_value = 6; * @return This builder for chaining. */ public Builder clearDoubleValue() { if (valueCase_ == 6) { valueCase_ = 0; value_ = null; onChanged(); } return this; } private com.google.protobuf.SingleFieldBuilderV3< com.scalar.db.rpc.Value.TextValue, com.scalar.db.rpc.Value.TextValue.Builder, com.scalar.db.rpc.Value.TextValueOrBuilder> textValueBuilder_; /** * .rpc.Value.TextValue text_value = 7; * @return Whether the textValue field is set. */ @java.lang.Override public boolean hasTextValue() { return valueCase_ == 7; } /** * .rpc.Value.TextValue text_value = 7; * @return The textValue. */ @java.lang.Override public com.scalar.db.rpc.Value.TextValue getTextValue() { if (textValueBuilder_ == null) { if (valueCase_ == 7) { return (com.scalar.db.rpc.Value.TextValue) value_; } return com.scalar.db.rpc.Value.TextValue.getDefaultInstance(); } else { if (valueCase_ == 7) { return textValueBuilder_.getMessage(); } return com.scalar.db.rpc.Value.TextValue.getDefaultInstance(); } } /** * .rpc.Value.TextValue text_value = 7; */ public Builder setTextValue(com.scalar.db.rpc.Value.TextValue value) { if (textValueBuilder_ == null) { if (value == null) { throw new NullPointerException(); } value_ = value; onChanged(); } else { textValueBuilder_.setMessage(value); } valueCase_ = 7; return this; } /** * .rpc.Value.TextValue text_value = 7; */ public Builder setTextValue( com.scalar.db.rpc.Value.TextValue.Builder builderForValue) { if (textValueBuilder_ == null) { value_ = builderForValue.build(); onChanged(); } else { textValueBuilder_.setMessage(builderForValue.build()); } valueCase_ = 7; return this; } /** * .rpc.Value.TextValue text_value = 7; */ public Builder mergeTextValue(com.scalar.db.rpc.Value.TextValue value) { if (textValueBuilder_ == null) { if (valueCase_ == 7 && value_ != com.scalar.db.rpc.Value.TextValue.getDefaultInstance()) { value_ = com.scalar.db.rpc.Value.TextValue.newBuilder((com.scalar.db.rpc.Value.TextValue) value_) .mergeFrom(value).buildPartial(); } else { value_ = value; } onChanged(); } else { if (valueCase_ == 7) { textValueBuilder_.mergeFrom(value); } else { textValueBuilder_.setMessage(value); } } valueCase_ = 7; return this; } /** * .rpc.Value.TextValue text_value = 7; */ public Builder clearTextValue() { if (textValueBuilder_ == null) { if (valueCase_ == 7) { valueCase_ = 0; value_ = null; onChanged(); } } else { if (valueCase_ == 7) { valueCase_ = 0; value_ = null; } textValueBuilder_.clear(); } return this; } /** * .rpc.Value.TextValue text_value = 7; */ public com.scalar.db.rpc.Value.TextValue.Builder getTextValueBuilder() { return getTextValueFieldBuilder().getBuilder(); } /** * .rpc.Value.TextValue text_value = 7; */ @java.lang.Override public com.scalar.db.rpc.Value.TextValueOrBuilder getTextValueOrBuilder() { if ((valueCase_ == 7) && (textValueBuilder_ != null)) { return textValueBuilder_.getMessageOrBuilder(); } else { if (valueCase_ == 7) { return (com.scalar.db.rpc.Value.TextValue) value_; } return com.scalar.db.rpc.Value.TextValue.getDefaultInstance(); } } /** * .rpc.Value.TextValue text_value = 7; */ private com.google.protobuf.SingleFieldBuilderV3< com.scalar.db.rpc.Value.TextValue, com.scalar.db.rpc.Value.TextValue.Builder, com.scalar.db.rpc.Value.TextValueOrBuilder> getTextValueFieldBuilder() { if (textValueBuilder_ == null) { if (!(valueCase_ == 7)) { value_ = com.scalar.db.rpc.Value.TextValue.getDefaultInstance(); } textValueBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< com.scalar.db.rpc.Value.TextValue, com.scalar.db.rpc.Value.TextValue.Builder, com.scalar.db.rpc.Value.TextValueOrBuilder>( (com.scalar.db.rpc.Value.TextValue) value_, getParentForChildren(), isClean()); value_ = null; } valueCase_ = 7; onChanged(); return textValueBuilder_; } private com.google.protobuf.SingleFieldBuilderV3< com.scalar.db.rpc.Value.BlobValue, com.scalar.db.rpc.Value.BlobValue.Builder, com.scalar.db.rpc.Value.BlobValueOrBuilder> blobValueBuilder_; /** * .rpc.Value.BlobValue blob_value = 8; * @return Whether the blobValue field is set. */ @java.lang.Override public boolean hasBlobValue() { return valueCase_ == 8; } /** * .rpc.Value.BlobValue blob_value = 8; * @return The blobValue. */ @java.lang.Override public com.scalar.db.rpc.Value.BlobValue getBlobValue() { if (blobValueBuilder_ == null) { if (valueCase_ == 8) { return (com.scalar.db.rpc.Value.BlobValue) value_; } return com.scalar.db.rpc.Value.BlobValue.getDefaultInstance(); } else { if (valueCase_ == 8) { return blobValueBuilder_.getMessage(); } return com.scalar.db.rpc.Value.BlobValue.getDefaultInstance(); } } /** * .rpc.Value.BlobValue blob_value = 8; */ public Builder setBlobValue(com.scalar.db.rpc.Value.BlobValue value) { if (blobValueBuilder_ == null) { if (value == null) { throw new NullPointerException(); } value_ = value; onChanged(); } else { blobValueBuilder_.setMessage(value); } valueCase_ = 8; return this; } /** * .rpc.Value.BlobValue blob_value = 8; */ public Builder setBlobValue( com.scalar.db.rpc.Value.BlobValue.Builder builderForValue) { if (blobValueBuilder_ == null) { value_ = builderForValue.build(); onChanged(); } else { blobValueBuilder_.setMessage(builderForValue.build()); } valueCase_ = 8; return this; } /** * .rpc.Value.BlobValue blob_value = 8; */ public Builder mergeBlobValue(com.scalar.db.rpc.Value.BlobValue value) { if (blobValueBuilder_ == null) { if (valueCase_ == 8 && value_ != com.scalar.db.rpc.Value.BlobValue.getDefaultInstance()) { value_ = com.scalar.db.rpc.Value.BlobValue.newBuilder((com.scalar.db.rpc.Value.BlobValue) value_) .mergeFrom(value).buildPartial(); } else { value_ = value; } onChanged(); } else { if (valueCase_ == 8) { blobValueBuilder_.mergeFrom(value); } else { blobValueBuilder_.setMessage(value); } } valueCase_ = 8; return this; } /** * .rpc.Value.BlobValue blob_value = 8; */ public Builder clearBlobValue() { if (blobValueBuilder_ == null) { if (valueCase_ == 8) { valueCase_ = 0; value_ = null; onChanged(); } } else { if (valueCase_ == 8) { valueCase_ = 0; value_ = null; } blobValueBuilder_.clear(); } return this; } /** * .rpc.Value.BlobValue blob_value = 8; */ public com.scalar.db.rpc.Value.BlobValue.Builder getBlobValueBuilder() { return getBlobValueFieldBuilder().getBuilder(); } /** * .rpc.Value.BlobValue blob_value = 8; */ @java.lang.Override public com.scalar.db.rpc.Value.BlobValueOrBuilder getBlobValueOrBuilder() { if ((valueCase_ == 8) && (blobValueBuilder_ != null)) { return blobValueBuilder_.getMessageOrBuilder(); } else { if (valueCase_ == 8) { return (com.scalar.db.rpc.Value.BlobValue) value_; } return com.scalar.db.rpc.Value.BlobValue.getDefaultInstance(); } } /** * .rpc.Value.BlobValue blob_value = 8; */ private com.google.protobuf.SingleFieldBuilderV3< com.scalar.db.rpc.Value.BlobValue, com.scalar.db.rpc.Value.BlobValue.Builder, com.scalar.db.rpc.Value.BlobValueOrBuilder> getBlobValueFieldBuilder() { if (blobValueBuilder_ == null) { if (!(valueCase_ == 8)) { value_ = com.scalar.db.rpc.Value.BlobValue.getDefaultInstance(); } blobValueBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< com.scalar.db.rpc.Value.BlobValue, com.scalar.db.rpc.Value.BlobValue.Builder, com.scalar.db.rpc.Value.BlobValueOrBuilder>( (com.scalar.db.rpc.Value.BlobValue) value_, getParentForChildren(), isClean()); value_ = null; } valueCase_ = 8; onChanged(); return blobValueBuilder_; } @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:rpc.Value) } // @@protoc_insertion_point(class_scope:rpc.Value) private static final com.scalar.db.rpc.Value DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new com.scalar.db.rpc.Value(); } public static com.scalar.db.rpc.Value getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public Value parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { Builder builder = newBuilder(); try { builder.mergeFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { throw e.setUnfinishedMessage(builder.buildPartial()); } catch (com.google.protobuf.UninitializedMessageException e) { throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); } catch (java.io.IOException e) { throw new com.google.protobuf.InvalidProtocolBufferException(e) .setUnfinishedMessage(builder.buildPartial()); } return builder.buildPartial(); } }; public static com.google.protobuf.Parser parser() { return PARSER; } @java.lang.Override public com.google.protobuf.Parser getParserForType() { return PARSER; } @java.lang.Override public com.scalar.db.rpc.Value getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy