lightstep.com.google.protobuf.Value Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: lightstep.lightstep.google.protobuf/struct.proto
package lightstep.com.lightstep.lightstep.google.protobuf;
/**
*
* `Value` represents a dynamically typed value which can be either
* null, a number, a string, a boolean, a recursive struct value, or a
* list of values. A producer of value is expected to set one of that
* variants, absence of any variant indicates an error.
* The JSON representation for `Value` is JSON value.
*
*
* Protobuf type {@code lightstep.lightstep.google.protobuf.Value}
*/
public final class Value extends
lightstep.com.lightstep.lightstep.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:lightstep.lightstep.google.protobuf.Value)
ValueOrBuilder {
private static final long serialVersionUID = 0L;
// Use Value.newBuilder() to construct.
private Value(lightstep.com.lightstep.lightstep.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private Value() {
}
@java.lang.Override
public final lightstep.com.lightstep.lightstep.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private Value(
lightstep.com.lightstep.lightstep.google.protobuf.CodedInputStream input,
lightstep.com.lightstep.lightstep.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws lightstep.com.lightstep.lightstep.google.protobuf.InvalidProtocolBufferException {
this();
int mutable_bitField0_ = 0;
lightstep.com.lightstep.lightstep.google.protobuf.UnknownFieldSet.Builder unknownFields =
lightstep.com.lightstep.lightstep.google.protobuf.UnknownFieldSet.newBuilder();
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
default: {
if (!parseUnknownFieldProto3(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
case 8: {
int rawValue = input.readEnum();
kindCase_ = 1;
kind_ = rawValue;
break;
}
case 17: {
kindCase_ = 2;
kind_ = input.readDouble();
break;
}
case 26: {
java.lang.String s = input.readStringRequireUtf8();
kindCase_ = 3;
kind_ = s;
break;
}
case 32: {
kindCase_ = 4;
kind_ = input.readBool();
break;
}
case 42: {
lightstep.com.lightstep.lightstep.google.protobuf.Struct.Builder subBuilder = null;
if (kindCase_ == 5) {
subBuilder = ((lightstep.com.lightstep.lightstep.google.protobuf.Struct) kind_).toBuilder();
}
kind_ =
input.readMessage(lightstep.com.lightstep.lightstep.google.protobuf.Struct.parser(), extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom((lightstep.com.lightstep.lightstep.google.protobuf.Struct) kind_);
kind_ = subBuilder.buildPartial();
}
kindCase_ = 5;
break;
}
case 50: {
lightstep.com.lightstep.lightstep.google.protobuf.ListValue.Builder subBuilder = null;
if (kindCase_ == 6) {
subBuilder = ((lightstep.com.lightstep.lightstep.google.protobuf.ListValue) kind_).toBuilder();
}
kind_ =
input.readMessage(lightstep.com.lightstep.lightstep.google.protobuf.ListValue.parser(), extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom((lightstep.com.lightstep.lightstep.google.protobuf.ListValue) kind_);
kind_ = subBuilder.buildPartial();
}
kindCase_ = 6;
break;
}
}
}
} catch (lightstep.com.lightstep.lightstep.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new lightstep.com.lightstep.lightstep.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final lightstep.com.lightstep.lightstep.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return lightstep.com.lightstep.lightstep.google.protobuf.StructProto.internal_static_google_protobuf_Value_descriptor;
}
protected lightstep.com.lightstep.lightstep.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return lightstep.com.lightstep.lightstep.google.protobuf.StructProto.internal_static_google_protobuf_Value_fieldAccessorTable
.ensureFieldAccessorsInitialized(
lightstep.com.lightstep.lightstep.google.protobuf.Value.class, lightstep.com.lightstep.lightstep.google.protobuf.Value.Builder.class);
}
private int kindCase_ = 0;
private java.lang.Object kind_;
public enum KindCase
implements lightstep.com.lightstep.lightstep.google.protobuf.Internal.EnumLite {
NULL_VALUE(1),
NUMBER_VALUE(2),
STRING_VALUE(3),
BOOL_VALUE(4),
STRUCT_VALUE(5),
LIST_VALUE(6),
KIND_NOT_SET(0);
private final int value;
private KindCase(int value) {
this.value = value;
}
/**
* @deprecated Use {@link #forNumber(int)} instead.
*/
@java.lang.Deprecated
public static KindCase valueOf(int value) {
return forNumber(value);
}
public static KindCase forNumber(int value) {
switch (value) {
case 1: return NULL_VALUE;
case 2: return NUMBER_VALUE;
case 3: return STRING_VALUE;
case 4: return BOOL_VALUE;
case 5: return STRUCT_VALUE;
case 6: return LIST_VALUE;
case 0: return KIND_NOT_SET;
default: return null;
}
}
public int getNumber() {
return this.value;
}
};
public KindCase
getKindCase() {
return KindCase.forNumber(
kindCase_);
}
public static final int NULL_VALUE_FIELD_NUMBER = 1;
/**
*
* Represents a null value.
*
*
* .lightstep.lightstep.google.protobuf.NullValue null_value = 1;
*/
public int getNullValueValue() {
if (kindCase_ == 1) {
return (java.lang.Integer) kind_;
}
return 0;
}
/**
*
* Represents a null value.
*
*
* .lightstep.lightstep.google.protobuf.NullValue null_value = 1;
*/
public lightstep.com.lightstep.lightstep.google.protobuf.NullValue getNullValue() {
if (kindCase_ == 1) {
lightstep.com.lightstep.lightstep.google.protobuf.NullValue result = lightstep.com.lightstep.lightstep.google.protobuf.NullValue.valueOf(
(java.lang.Integer) kind_);
return result == null ? lightstep.com.lightstep.lightstep.google.protobuf.NullValue.UNRECOGNIZED : result;
}
return lightstep.com.lightstep.lightstep.google.protobuf.NullValue.NULL_VALUE;
}
public static final int NUMBER_VALUE_FIELD_NUMBER = 2;
/**
*
* Represents a double value.
*
*
* double number_value = 2;
*/
public double getNumberValue() {
if (kindCase_ == 2) {
return (java.lang.Double) kind_;
}
return 0D;
}
public static final int STRING_VALUE_FIELD_NUMBER = 3;
/**
*
* Represents a string value.
*
*
* string string_value = 3;
*/
public java.lang.String getStringValue() {
java.lang.Object ref = "";
if (kindCase_ == 3) {
ref = kind_;
}
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
lightstep.com.lightstep.lightstep.google.protobuf.ByteString bs =
(lightstep.com.lightstep.lightstep.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
if (kindCase_ == 3) {
kind_ = s;
}
return s;
}
}
/**
*
* Represents a string value.
*
*
* string string_value = 3;
*/
public lightstep.com.lightstep.lightstep.google.protobuf.ByteString
getStringValueBytes() {
java.lang.Object ref = "";
if (kindCase_ == 3) {
ref = kind_;
}
if (ref instanceof java.lang.String) {
lightstep.com.lightstep.lightstep.google.protobuf.ByteString b =
lightstep.com.lightstep.lightstep.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
if (kindCase_ == 3) {
kind_ = b;
}
return b;
} else {
return (lightstep.com.lightstep.lightstep.google.protobuf.ByteString) ref;
}
}
public static final int BOOL_VALUE_FIELD_NUMBER = 4;
/**
*
* Represents a boolean value.
*
*
* bool bool_value = 4;
*/
public boolean getBoolValue() {
if (kindCase_ == 4) {
return (java.lang.Boolean) kind_;
}
return false;
}
public static final int STRUCT_VALUE_FIELD_NUMBER = 5;
/**
*
* Represents a structured value.
*
*
* .lightstep.lightstep.google.protobuf.Struct struct_value = 5;
*/
public boolean hasStructValue() {
return kindCase_ == 5;
}
/**
*
* Represents a structured value.
*
*
* .lightstep.lightstep.google.protobuf.Struct struct_value = 5;
*/
public lightstep.com.lightstep.lightstep.google.protobuf.Struct getStructValue() {
if (kindCase_ == 5) {
return (lightstep.com.lightstep.lightstep.google.protobuf.Struct) kind_;
}
return lightstep.com.lightstep.lightstep.google.protobuf.Struct.getDefaultInstance();
}
/**
*
* Represents a structured value.
*
*
* .lightstep.lightstep.google.protobuf.Struct struct_value = 5;
*/
public lightstep.com.lightstep.lightstep.google.protobuf.StructOrBuilder getStructValueOrBuilder() {
if (kindCase_ == 5) {
return (lightstep.com.lightstep.lightstep.google.protobuf.Struct) kind_;
}
return lightstep.com.lightstep.lightstep.google.protobuf.Struct.getDefaultInstance();
}
public static final int LIST_VALUE_FIELD_NUMBER = 6;
/**
*
* Represents a repeated `Value`.
*
*
* .lightstep.lightstep.google.protobuf.ListValue list_value = 6;
*/
public boolean hasListValue() {
return kindCase_ == 6;
}
/**
*
* Represents a repeated `Value`.
*
*
* .lightstep.lightstep.google.protobuf.ListValue list_value = 6;
*/
public lightstep.com.lightstep.lightstep.google.protobuf.ListValue getListValue() {
if (kindCase_ == 6) {
return (lightstep.com.lightstep.lightstep.google.protobuf.ListValue) kind_;
}
return lightstep.com.lightstep.lightstep.google.protobuf.ListValue.getDefaultInstance();
}
/**
*
* Represents a repeated `Value`.
*
*
* .lightstep.lightstep.google.protobuf.ListValue list_value = 6;
*/
public lightstep.com.lightstep.lightstep.google.protobuf.ListValueOrBuilder getListValueOrBuilder() {
if (kindCase_ == 6) {
return (lightstep.com.lightstep.lightstep.google.protobuf.ListValue) kind_;
}
return lightstep.com.lightstep.lightstep.google.protobuf.ListValue.getDefaultInstance();
}
private byte memoizedIsInitialized = -1;
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
public void writeTo(lightstep.com.lightstep.lightstep.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
if (kindCase_ == 1) {
output.writeEnum(1, ((java.lang.Integer) kind_));
}
if (kindCase_ == 2) {
output.writeDouble(
2, (double)((java.lang.Double) kind_));
}
if (kindCase_ == 3) {
lightstep.com.lightstep.lightstep.google.protobuf.GeneratedMessageV3.writeString(output, 3, kind_);
}
if (kindCase_ == 4) {
output.writeBool(
4, (boolean)((java.lang.Boolean) kind_));
}
if (kindCase_ == 5) {
output.writeMessage(5, (lightstep.com.lightstep.lightstep.google.protobuf.Struct) kind_);
}
if (kindCase_ == 6) {
output.writeMessage(6, (lightstep.com.lightstep.lightstep.google.protobuf.ListValue) kind_);
}
unknownFields.writeTo(output);
}
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (kindCase_ == 1) {
size += lightstep.com.lightstep.lightstep.google.protobuf.CodedOutputStream
.computeEnumSize(1, ((java.lang.Integer) kind_));
}
if (kindCase_ == 2) {
size += lightstep.com.lightstep.lightstep.google.protobuf.CodedOutputStream
.computeDoubleSize(
2, (double)((java.lang.Double) kind_));
}
if (kindCase_ == 3) {
size += lightstep.com.lightstep.lightstep.google.protobuf.GeneratedMessageV3.computeStringSize(3, kind_);
}
if (kindCase_ == 4) {
size += lightstep.com.lightstep.lightstep.google.protobuf.CodedOutputStream
.computeBoolSize(
4, (boolean)((java.lang.Boolean) kind_));
}
if (kindCase_ == 5) {
size += lightstep.com.lightstep.lightstep.google.protobuf.CodedOutputStream
.computeMessageSize(5, (lightstep.com.lightstep.lightstep.google.protobuf.Struct) kind_);
}
if (kindCase_ == 6) {
size += lightstep.com.lightstep.lightstep.google.protobuf.CodedOutputStream
.computeMessageSize(6, (lightstep.com.lightstep.lightstep.google.protobuf.ListValue) kind_);
}
size += unknownFields.getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof lightstep.com.lightstep.lightstep.google.protobuf.Value)) {
return super.equals(obj);
}
lightstep.com.lightstep.lightstep.google.protobuf.Value other = (lightstep.com.lightstep.lightstep.google.protobuf.Value) obj;
boolean result = true;
result = result && getKindCase().equals(
other.getKindCase());
if (!result) return false;
switch (kindCase_) {
case 1:
result = result && getNullValueValue()
== other.getNullValueValue();
break;
case 2:
result = result && (
java.lang.Double.doubleToLongBits(getNumberValue())
== java.lang.Double.doubleToLongBits(
other.getNumberValue()));
break;
case 3:
result = result && getStringValue()
.equals(other.getStringValue());
break;
case 4:
result = result && (getBoolValue()
== other.getBoolValue());
break;
case 5:
result = result && getStructValue()
.equals(other.getStructValue());
break;
case 6:
result = result && getListValue()
.equals(other.getListValue());
break;
case 0:
default:
}
result = result && unknownFields.equals(other.unknownFields);
return result;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
switch (kindCase_) {
case 1:
hash = (37 * hash) + NULL_VALUE_FIELD_NUMBER;
hash = (53 * hash) + getNullValueValue();
break;
case 2:
hash = (37 * hash) + NUMBER_VALUE_FIELD_NUMBER;
hash = (53 * hash) + lightstep.com.lightstep.lightstep.google.protobuf.Internal.hashLong(
java.lang.Double.doubleToLongBits(getNumberValue()));
break;
case 3:
hash = (37 * hash) + STRING_VALUE_FIELD_NUMBER;
hash = (53 * hash) + getStringValue().hashCode();
break;
case 4:
hash = (37 * hash) + BOOL_VALUE_FIELD_NUMBER;
hash = (53 * hash) + lightstep.com.lightstep.lightstep.google.protobuf.Internal.hashBoolean(
getBoolValue());
break;
case 5:
hash = (37 * hash) + STRUCT_VALUE_FIELD_NUMBER;
hash = (53 * hash) + getStructValue().hashCode();
break;
case 6:
hash = (37 * hash) + LIST_VALUE_FIELD_NUMBER;
hash = (53 * hash) + getListValue().hashCode();
break;
case 0:
default:
}
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static lightstep.com.lightstep.lightstep.google.protobuf.Value parseFrom(
java.nio.ByteBuffer data)
throws lightstep.com.lightstep.lightstep.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static lightstep.com.lightstep.lightstep.google.protobuf.Value parseFrom(
java.nio.ByteBuffer data,
lightstep.com.lightstep.lightstep.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws lightstep.com.lightstep.lightstep.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static lightstep.com.lightstep.lightstep.google.protobuf.Value parseFrom(
lightstep.com.lightstep.lightstep.google.protobuf.ByteString data)
throws lightstep.com.lightstep.lightstep.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static lightstep.com.lightstep.lightstep.google.protobuf.Value parseFrom(
lightstep.com.lightstep.lightstep.google.protobuf.ByteString data,
lightstep.com.lightstep.lightstep.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws lightstep.com.lightstep.lightstep.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static lightstep.com.lightstep.lightstep.google.protobuf.Value parseFrom(byte[] data)
throws lightstep.com.lightstep.lightstep.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static lightstep.com.lightstep.lightstep.google.protobuf.Value parseFrom(
byte[] data,
lightstep.com.lightstep.lightstep.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws lightstep.com.lightstep.lightstep.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static lightstep.com.lightstep.lightstep.google.protobuf.Value parseFrom(java.io.InputStream input)
throws java.io.IOException {
return lightstep.com.lightstep.lightstep.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static lightstep.com.lightstep.lightstep.google.protobuf.Value parseFrom(
java.io.InputStream input,
lightstep.com.lightstep.lightstep.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return lightstep.com.lightstep.lightstep.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
public static lightstep.com.lightstep.lightstep.google.protobuf.Value parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return lightstep.com.lightstep.lightstep.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static lightstep.com.lightstep.lightstep.google.protobuf.Value parseDelimitedFrom(
java.io.InputStream input,
lightstep.com.lightstep.lightstep.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return lightstep.com.lightstep.lightstep.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input, extensionRegistry);
}
public static lightstep.com.lightstep.lightstep.google.protobuf.Value parseFrom(
lightstep.com.lightstep.lightstep.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return lightstep.com.lightstep.lightstep.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static lightstep.com.lightstep.lightstep.google.protobuf.Value parseFrom(
lightstep.com.lightstep.lightstep.google.protobuf.CodedInputStream input,
lightstep.com.lightstep.lightstep.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return lightstep.com.lightstep.lightstep.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(lightstep.com.lightstep.lightstep.google.protobuf.Value prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
public Builder toBuilder() {
return this == DEFAULT_INSTANCE
? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(
lightstep.com.lightstep.lightstep.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
*
* `Value` represents a dynamically typed value which can be either
* null, a number, a string, a boolean, a recursive struct value, or a
* list of values. A producer of value is expected to set one of that
* variants, absence of any variant indicates an error.
* The JSON representation for `Value` is JSON value.
*
*
* Protobuf type {@code lightstep.lightstep.google.protobuf.Value}
*/
public static final class Builder extends
lightstep.com.lightstep.lightstep.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:lightstep.lightstep.google.protobuf.Value)
lightstep.com.lightstep.lightstep.google.protobuf.ValueOrBuilder {
public static final lightstep.com.lightstep.lightstep.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return lightstep.com.lightstep.lightstep.google.protobuf.StructProto.internal_static_google_protobuf_Value_descriptor;
}
protected lightstep.com.lightstep.lightstep.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return lightstep.com.lightstep.lightstep.google.protobuf.StructProto.internal_static_google_protobuf_Value_fieldAccessorTable
.ensureFieldAccessorsInitialized(
lightstep.com.lightstep.lightstep.google.protobuf.Value.class, lightstep.com.lightstep.lightstep.google.protobuf.Value.Builder.class);
}
// Construct using lightstep.com.lightstep.lightstep.google.protobuf.Value.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
lightstep.com.lightstep.lightstep.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (lightstep.com.lightstep.lightstep.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
}
}
public Builder clear() {
super.clear();
kindCase_ = 0;
kind_ = null;
return this;
}
public lightstep.com.lightstep.lightstep.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return lightstep.com.lightstep.lightstep.google.protobuf.StructProto.internal_static_google_protobuf_Value_descriptor;
}
public lightstep.com.lightstep.lightstep.google.protobuf.Value getDefaultInstanceForType() {
return lightstep.com.lightstep.lightstep.google.protobuf.Value.getDefaultInstance();
}
public lightstep.com.lightstep.lightstep.google.protobuf.Value build() {
lightstep.com.lightstep.lightstep.google.protobuf.Value result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public lightstep.com.lightstep.lightstep.google.protobuf.Value buildPartial() {
lightstep.com.lightstep.lightstep.google.protobuf.Value result = new lightstep.com.lightstep.lightstep.google.protobuf.Value(this);
if (kindCase_ == 1) {
result.kind_ = kind_;
}
if (kindCase_ == 2) {
result.kind_ = kind_;
}
if (kindCase_ == 3) {
result.kind_ = kind_;
}
if (kindCase_ == 4) {
result.kind_ = kind_;
}
if (kindCase_ == 5) {
if (structValueBuilder_ == null) {
result.kind_ = kind_;
} else {
result.kind_ = structValueBuilder_.build();
}
}
if (kindCase_ == 6) {
if (listValueBuilder_ == null) {
result.kind_ = kind_;
} else {
result.kind_ = listValueBuilder_.build();
}
}
result.kindCase_ = kindCase_;
onBuilt();
return result;
}
public Builder clone() {
return (Builder) super.clone();
}
public Builder setField(
lightstep.com.lightstep.lightstep.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.setField(field, value);
}
public Builder clearField(
lightstep.com.lightstep.lightstep.google.protobuf.Descriptors.FieldDescriptor field) {
return (Builder) super.clearField(field);
}
public Builder clearOneof(
lightstep.com.lightstep.lightstep.google.protobuf.Descriptors.OneofDescriptor oneof) {
return (Builder) super.clearOneof(oneof);
}
public Builder setRepeatedField(
lightstep.com.lightstep.lightstep.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return (Builder) super.setRepeatedField(field, index, value);
}
public Builder addRepeatedField(
lightstep.com.lightstep.lightstep.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.addRepeatedField(field, value);
}
public Builder mergeFrom(lightstep.com.lightstep.lightstep.google.protobuf.Message other) {
if (other instanceof lightstep.com.lightstep.lightstep.google.protobuf.Value) {
return mergeFrom((lightstep.com.lightstep.lightstep.google.protobuf.Value)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(lightstep.com.lightstep.lightstep.google.protobuf.Value other) {
if (other == lightstep.com.lightstep.lightstep.google.protobuf.Value.getDefaultInstance()) return this;
switch (other.getKindCase()) {
case NULL_VALUE: {
setNullValueValue(other.getNullValueValue());
break;
}
case NUMBER_VALUE: {
setNumberValue(other.getNumberValue());
break;
}
case STRING_VALUE: {
kindCase_ = 3;
kind_ = other.kind_;
onChanged();
break;
}
case BOOL_VALUE: {
setBoolValue(other.getBoolValue());
break;
}
case STRUCT_VALUE: {
mergeStructValue(other.getStructValue());
break;
}
case LIST_VALUE: {
mergeListValue(other.getListValue());
break;
}
case KIND_NOT_SET: {
break;
}
}
this.mergeUnknownFields(other.unknownFields);
onChanged();
return this;
}
public final boolean isInitialized() {
return true;
}
public Builder mergeFrom(
lightstep.com.lightstep.lightstep.google.protobuf.CodedInputStream input,
lightstep.com.lightstep.lightstep.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
lightstep.com.lightstep.lightstep.google.protobuf.Value parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (lightstep.com.lightstep.lightstep.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (lightstep.com.lightstep.lightstep.google.protobuf.Value) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int kindCase_ = 0;
private java.lang.Object kind_;
public KindCase
getKindCase() {
return KindCase.forNumber(
kindCase_);
}
public Builder clearKind() {
kindCase_ = 0;
kind_ = null;
onChanged();
return this;
}
/**
*
* Represents a null value.
*
*
* .lightstep.lightstep.google.protobuf.NullValue null_value = 1;
*/
public int getNullValueValue() {
if (kindCase_ == 1) {
return ((java.lang.Integer) kind_).intValue();
}
return 0;
}
/**
*
* Represents a null value.
*
*
* .lightstep.lightstep.google.protobuf.NullValue null_value = 1;
*/
public Builder setNullValueValue(int value) {
kindCase_ = 1;
kind_ = value;
onChanged();
return this;
}
/**
*
* Represents a null value.
*
*
* .lightstep.lightstep.google.protobuf.NullValue null_value = 1;
*/
public lightstep.com.lightstep.lightstep.google.protobuf.NullValue getNullValue() {
if (kindCase_ == 1) {
lightstep.com.lightstep.lightstep.google.protobuf.NullValue result = lightstep.com.lightstep.lightstep.google.protobuf.NullValue.valueOf(
(java.lang.Integer) kind_);
return result == null ? lightstep.com.lightstep.lightstep.google.protobuf.NullValue.UNRECOGNIZED : result;
}
return lightstep.com.lightstep.lightstep.google.protobuf.NullValue.NULL_VALUE;
}
/**
*
* Represents a null value.
*
*
* .lightstep.lightstep.google.protobuf.NullValue null_value = 1;
*/
public Builder setNullValue(lightstep.com.lightstep.lightstep.google.protobuf.NullValue value) {
if (value == null) {
throw new NullPointerException();
}
kindCase_ = 1;
kind_ = value.getNumber();
onChanged();
return this;
}
/**
*
* Represents a null value.
*
*
* .lightstep.lightstep.google.protobuf.NullValue null_value = 1;
*/
public Builder clearNullValue() {
if (kindCase_ == 1) {
kindCase_ = 0;
kind_ = null;
onChanged();
}
return this;
}
/**
*
* Represents a double value.
*
*
* double number_value = 2;
*/
public double getNumberValue() {
if (kindCase_ == 2) {
return (java.lang.Double) kind_;
}
return 0D;
}
/**
*
* Represents a double value.
*
*
* double number_value = 2;
*/
public Builder setNumberValue(double value) {
kindCase_ = 2;
kind_ = value;
onChanged();
return this;
}
/**
*
* Represents a double value.
*
*
* double number_value = 2;
*/
public Builder clearNumberValue() {
if (kindCase_ == 2) {
kindCase_ = 0;
kind_ = null;
onChanged();
}
return this;
}
/**
*
* Represents a string value.
*
*
* string string_value = 3;
*/
public java.lang.String getStringValue() {
java.lang.Object ref = "";
if (kindCase_ == 3) {
ref = kind_;
}
if (!(ref instanceof java.lang.String)) {
lightstep.com.lightstep.lightstep.google.protobuf.ByteString bs =
(lightstep.com.lightstep.lightstep.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
if (kindCase_ == 3) {
kind_ = s;
}
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* Represents a string value.
*
*
* string string_value = 3;
*/
public lightstep.com.lightstep.lightstep.google.protobuf.ByteString
getStringValueBytes() {
java.lang.Object ref = "";
if (kindCase_ == 3) {
ref = kind_;
}
if (ref instanceof String) {
lightstep.com.lightstep.lightstep.google.protobuf.ByteString b =
lightstep.com.lightstep.lightstep.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
if (kindCase_ == 3) {
kind_ = b;
}
return b;
} else {
return (lightstep.com.lightstep.lightstep.google.protobuf.ByteString) ref;
}
}
/**
*
* Represents a string value.
*
*
* string string_value = 3;
*/
public Builder setStringValue(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
kindCase_ = 3;
kind_ = value;
onChanged();
return this;
}
/**
*
* Represents a string value.
*
*
* string string_value = 3;
*/
public Builder clearStringValue() {
if (kindCase_ == 3) {
kindCase_ = 0;
kind_ = null;
onChanged();
}
return this;
}
/**
*
* Represents a string value.
*
*
* string string_value = 3;
*/
public Builder setStringValueBytes(
lightstep.com.lightstep.lightstep.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
kindCase_ = 3;
kind_ = value;
onChanged();
return this;
}
/**
*
* Represents a boolean value.
*
*
* bool bool_value = 4;
*/
public boolean getBoolValue() {
if (kindCase_ == 4) {
return (java.lang.Boolean) kind_;
}
return false;
}
/**
*
* Represents a boolean value.
*
*
* bool bool_value = 4;
*/
public Builder setBoolValue(boolean value) {
kindCase_ = 4;
kind_ = value;
onChanged();
return this;
}
/**
*
* Represents a boolean value.
*
*
* bool bool_value = 4;
*/
public Builder clearBoolValue() {
if (kindCase_ == 4) {
kindCase_ = 0;
kind_ = null;
onChanged();
}
return this;
}
private lightstep.com.lightstep.lightstep.google.protobuf.SingleFieldBuilderV3<
lightstep.com.lightstep.lightstep.google.protobuf.Struct, lightstep.com.lightstep.lightstep.google.protobuf.Struct.Builder, lightstep.com.lightstep.lightstep.google.protobuf.StructOrBuilder> structValueBuilder_;
/**
*
* Represents a structured value.
*
*
* .lightstep.lightstep.google.protobuf.Struct struct_value = 5;
*/
public boolean hasStructValue() {
return kindCase_ == 5;
}
/**
*
* Represents a structured value.
*
*
* .lightstep.lightstep.google.protobuf.Struct struct_value = 5;
*/
public lightstep.com.lightstep.lightstep.google.protobuf.Struct getStructValue() {
if (structValueBuilder_ == null) {
if (kindCase_ == 5) {
return (lightstep.com.lightstep.lightstep.google.protobuf.Struct) kind_;
}
return lightstep.com.lightstep.lightstep.google.protobuf.Struct.getDefaultInstance();
} else {
if (kindCase_ == 5) {
return structValueBuilder_.getMessage();
}
return lightstep.com.lightstep.lightstep.google.protobuf.Struct.getDefaultInstance();
}
}
/**
*
* Represents a structured value.
*
*
* .lightstep.lightstep.google.protobuf.Struct struct_value = 5;
*/
public Builder setStructValue(lightstep.com.lightstep.lightstep.google.protobuf.Struct value) {
if (structValueBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
kind_ = value;
onChanged();
} else {
structValueBuilder_.setMessage(value);
}
kindCase_ = 5;
return this;
}
/**
*
* Represents a structured value.
*
*
* .lightstep.lightstep.google.protobuf.Struct struct_value = 5;
*/
public Builder setStructValue(
lightstep.com.lightstep.lightstep.google.protobuf.Struct.Builder builderForValue) {
if (structValueBuilder_ == null) {
kind_ = builderForValue.build();
onChanged();
} else {
structValueBuilder_.setMessage(builderForValue.build());
}
kindCase_ = 5;
return this;
}
/**
*
* Represents a structured value.
*
*
* .lightstep.lightstep.google.protobuf.Struct struct_value = 5;
*/
public Builder mergeStructValue(lightstep.com.lightstep.lightstep.google.protobuf.Struct value) {
if (structValueBuilder_ == null) {
if (kindCase_ == 5 &&
kind_ != lightstep.com.lightstep.lightstep.google.protobuf.Struct.getDefaultInstance()) {
kind_ = lightstep.com.lightstep.lightstep.google.protobuf.Struct.newBuilder((lightstep.com.lightstep.lightstep.google.protobuf.Struct) kind_)
.mergeFrom(value).buildPartial();
} else {
kind_ = value;
}
onChanged();
} else {
if (kindCase_ == 5) {
structValueBuilder_.mergeFrom(value);
}
structValueBuilder_.setMessage(value);
}
kindCase_ = 5;
return this;
}
/**
*
* Represents a structured value.
*
*
* .lightstep.lightstep.google.protobuf.Struct struct_value = 5;
*/
public Builder clearStructValue() {
if (structValueBuilder_ == null) {
if (kindCase_ == 5) {
kindCase_ = 0;
kind_ = null;
onChanged();
}
} else {
if (kindCase_ == 5) {
kindCase_ = 0;
kind_ = null;
}
structValueBuilder_.clear();
}
return this;
}
/**
*
* Represents a structured value.
*
*
* .lightstep.lightstep.google.protobuf.Struct struct_value = 5;
*/
public lightstep.com.lightstep.lightstep.google.protobuf.Struct.Builder getStructValueBuilder() {
return getStructValueFieldBuilder().getBuilder();
}
/**
*
* Represents a structured value.
*
*
* .lightstep.lightstep.google.protobuf.Struct struct_value = 5;
*/
public lightstep.com.lightstep.lightstep.google.protobuf.StructOrBuilder getStructValueOrBuilder() {
if ((kindCase_ == 5) && (structValueBuilder_ != null)) {
return structValueBuilder_.getMessageOrBuilder();
} else {
if (kindCase_ == 5) {
return (lightstep.com.lightstep.lightstep.google.protobuf.Struct) kind_;
}
return lightstep.com.lightstep.lightstep.google.protobuf.Struct.getDefaultInstance();
}
}
/**
*
* Represents a structured value.
*
*
* .lightstep.lightstep.google.protobuf.Struct struct_value = 5;
*/
private lightstep.com.lightstep.lightstep.google.protobuf.SingleFieldBuilderV3<
lightstep.com.lightstep.lightstep.google.protobuf.Struct, lightstep.com.lightstep.lightstep.google.protobuf.Struct.Builder, lightstep.com.lightstep.lightstep.google.protobuf.StructOrBuilder>
getStructValueFieldBuilder() {
if (structValueBuilder_ == null) {
if (!(kindCase_ == 5)) {
kind_ = lightstep.com.lightstep.lightstep.google.protobuf.Struct.getDefaultInstance();
}
structValueBuilder_ = new lightstep.com.lightstep.lightstep.google.protobuf.SingleFieldBuilderV3<
lightstep.com.lightstep.lightstep.google.protobuf.Struct, lightstep.com.lightstep.lightstep.google.protobuf.Struct.Builder, lightstep.com.lightstep.lightstep.google.protobuf.StructOrBuilder>(
(lightstep.com.lightstep.lightstep.google.protobuf.Struct) kind_,
getParentForChildren(),
isClean());
kind_ = null;
}
kindCase_ = 5;
onChanged();;
return structValueBuilder_;
}
private lightstep.com.lightstep.lightstep.google.protobuf.SingleFieldBuilderV3<
lightstep.com.lightstep.lightstep.google.protobuf.ListValue, lightstep.com.lightstep.lightstep.google.protobuf.ListValue.Builder, lightstep.com.lightstep.lightstep.google.protobuf.ListValueOrBuilder> listValueBuilder_;
/**
*
* Represents a repeated `Value`.
*
*
* .lightstep.lightstep.google.protobuf.ListValue list_value = 6;
*/
public boolean hasListValue() {
return kindCase_ == 6;
}
/**
*
* Represents a repeated `Value`.
*
*
* .lightstep.lightstep.google.protobuf.ListValue list_value = 6;
*/
public lightstep.com.lightstep.lightstep.google.protobuf.ListValue getListValue() {
if (listValueBuilder_ == null) {
if (kindCase_ == 6) {
return (lightstep.com.lightstep.lightstep.google.protobuf.ListValue) kind_;
}
return lightstep.com.lightstep.lightstep.google.protobuf.ListValue.getDefaultInstance();
} else {
if (kindCase_ == 6) {
return listValueBuilder_.getMessage();
}
return lightstep.com.lightstep.lightstep.google.protobuf.ListValue.getDefaultInstance();
}
}
/**
*
* Represents a repeated `Value`.
*
*
* .lightstep.lightstep.google.protobuf.ListValue list_value = 6;
*/
public Builder setListValue(lightstep.com.lightstep.lightstep.google.protobuf.ListValue value) {
if (listValueBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
kind_ = value;
onChanged();
} else {
listValueBuilder_.setMessage(value);
}
kindCase_ = 6;
return this;
}
/**
*
* Represents a repeated `Value`.
*
*
* .lightstep.lightstep.google.protobuf.ListValue list_value = 6;
*/
public Builder setListValue(
lightstep.com.lightstep.lightstep.google.protobuf.ListValue.Builder builderForValue) {
if (listValueBuilder_ == null) {
kind_ = builderForValue.build();
onChanged();
} else {
listValueBuilder_.setMessage(builderForValue.build());
}
kindCase_ = 6;
return this;
}
/**
*
* Represents a repeated `Value`.
*
*
* .lightstep.lightstep.google.protobuf.ListValue list_value = 6;
*/
public Builder mergeListValue(lightstep.com.lightstep.lightstep.google.protobuf.ListValue value) {
if (listValueBuilder_ == null) {
if (kindCase_ == 6 &&
kind_ != lightstep.com.lightstep.lightstep.google.protobuf.ListValue.getDefaultInstance()) {
kind_ = lightstep.com.lightstep.lightstep.google.protobuf.ListValue.newBuilder((lightstep.com.lightstep.lightstep.google.protobuf.ListValue) kind_)
.mergeFrom(value).buildPartial();
} else {
kind_ = value;
}
onChanged();
} else {
if (kindCase_ == 6) {
listValueBuilder_.mergeFrom(value);
}
listValueBuilder_.setMessage(value);
}
kindCase_ = 6;
return this;
}
/**
*
* Represents a repeated `Value`.
*
*
* .lightstep.lightstep.google.protobuf.ListValue list_value = 6;
*/
public Builder clearListValue() {
if (listValueBuilder_ == null) {
if (kindCase_ == 6) {
kindCase_ = 0;
kind_ = null;
onChanged();
}
} else {
if (kindCase_ == 6) {
kindCase_ = 0;
kind_ = null;
}
listValueBuilder_.clear();
}
return this;
}
/**
*
* Represents a repeated `Value`.
*
*
* .lightstep.lightstep.google.protobuf.ListValue list_value = 6;
*/
public lightstep.com.lightstep.lightstep.google.protobuf.ListValue.Builder getListValueBuilder() {
return getListValueFieldBuilder().getBuilder();
}
/**
*
* Represents a repeated `Value`.
*
*
* .lightstep.lightstep.google.protobuf.ListValue list_value = 6;
*/
public lightstep.com.lightstep.lightstep.google.protobuf.ListValueOrBuilder getListValueOrBuilder() {
if ((kindCase_ == 6) && (listValueBuilder_ != null)) {
return listValueBuilder_.getMessageOrBuilder();
} else {
if (kindCase_ == 6) {
return (lightstep.com.lightstep.lightstep.google.protobuf.ListValue) kind_;
}
return lightstep.com.lightstep.lightstep.google.protobuf.ListValue.getDefaultInstance();
}
}
/**
*
* Represents a repeated `Value`.
*
*
* .lightstep.lightstep.google.protobuf.ListValue list_value = 6;
*/
private lightstep.com.lightstep.lightstep.google.protobuf.SingleFieldBuilderV3<
lightstep.com.lightstep.lightstep.google.protobuf.ListValue, lightstep.com.lightstep.lightstep.google.protobuf.ListValue.Builder, lightstep.com.lightstep.lightstep.google.protobuf.ListValueOrBuilder>
getListValueFieldBuilder() {
if (listValueBuilder_ == null) {
if (!(kindCase_ == 6)) {
kind_ = lightstep.com.lightstep.lightstep.google.protobuf.ListValue.getDefaultInstance();
}
listValueBuilder_ = new lightstep.com.lightstep.lightstep.google.protobuf.SingleFieldBuilderV3<
lightstep.com.lightstep.lightstep.google.protobuf.ListValue, lightstep.com.lightstep.lightstep.google.protobuf.ListValue.Builder, lightstep.com.lightstep.lightstep.google.protobuf.ListValueOrBuilder>(
(lightstep.com.lightstep.lightstep.google.protobuf.ListValue) kind_,
getParentForChildren(),
isClean());
kind_ = null;
}
kindCase_ = 6;
onChanged();;
return listValueBuilder_;
}
public final Builder setUnknownFields(
final lightstep.com.lightstep.lightstep.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFieldsProto3(unknownFields);
}
public final Builder mergeUnknownFields(
final lightstep.com.lightstep.lightstep.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:lightstep.lightstep.google.protobuf.Value)
}
// @@protoc_insertion_point(class_scope:lightstep.lightstep.google.protobuf.Value)
private static final lightstep.com.lightstep.lightstep.google.protobuf.Value DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new lightstep.com.lightstep.lightstep.google.protobuf.Value();
}
public static lightstep.com.lightstep.lightstep.google.protobuf.Value getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final lightstep.com.lightstep.lightstep.google.protobuf.Parser
PARSER = new lightstep.com.lightstep.lightstep.google.protobuf.AbstractParser() {
public Value parsePartialFrom(
lightstep.com.lightstep.lightstep.google.protobuf.CodedInputStream input,
lightstep.com.lightstep.lightstep.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws lightstep.com.lightstep.lightstep.google.protobuf.InvalidProtocolBufferException {
return new Value(input, extensionRegistry);
}
};
public static lightstep.com.lightstep.lightstep.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public lightstep.com.lightstep.lightstep.google.protobuf.Parser getParserForType() {
return PARSER;
}
public lightstep.com.lightstep.lightstep.google.protobuf.Value getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy