com.lightstep.tracer.grpc.ReportResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-common Show documentation
Show all versions of java-common Show documentation
The LightStep OpenTracing Tracer implementation for Java
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: collector.proto
package com.lightstep.tracer.grpc;
/**
* Protobuf type {@code lightstep.collector.ReportResponse}
*/
public final class ReportResponse extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:lightstep.collector.ReportResponse)
ReportResponseOrBuilder {
private static final long serialVersionUID = 0L;
// Use ReportResponse.newBuilder() to construct.
private ReportResponse(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private ReportResponse() {
commands_ = java.util.Collections.emptyList();
errors_ = com.google.protobuf.LazyStringArrayList.EMPTY;
warnings_ = com.google.protobuf.LazyStringArrayList.EMPTY;
infos_ = com.google.protobuf.LazyStringArrayList.EMPTY;
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private ReportResponse(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
int mutable_bitField0_ = 0;
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
com.google.protobuf.UnknownFieldSet.newBuilder();
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 10: {
if (!((mutable_bitField0_ & 0x00000001) == 0x00000001)) {
commands_ = new java.util.ArrayList();
mutable_bitField0_ |= 0x00000001;
}
commands_.add(
input.readMessage(com.lightstep.tracer.grpc.Command.parser(), extensionRegistry));
break;
}
case 18: {
com.google.protobuf.Timestamp.Builder subBuilder = null;
if (receiveTimestamp_ != null) {
subBuilder = receiveTimestamp_.toBuilder();
}
receiveTimestamp_ = input.readMessage(com.google.protobuf.Timestamp.parser(), extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(receiveTimestamp_);
receiveTimestamp_ = subBuilder.buildPartial();
}
break;
}
case 26: {
com.google.protobuf.Timestamp.Builder subBuilder = null;
if (transmitTimestamp_ != null) {
subBuilder = transmitTimestamp_.toBuilder();
}
transmitTimestamp_ = input.readMessage(com.google.protobuf.Timestamp.parser(), extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(transmitTimestamp_);
transmitTimestamp_ = subBuilder.buildPartial();
}
break;
}
case 34: {
java.lang.String s = input.readStringRequireUtf8();
if (!((mutable_bitField0_ & 0x00000008) == 0x00000008)) {
errors_ = new com.google.protobuf.LazyStringArrayList();
mutable_bitField0_ |= 0x00000008;
}
errors_.add(s);
break;
}
case 42: {
java.lang.String s = input.readStringRequireUtf8();
if (!((mutable_bitField0_ & 0x00000010) == 0x00000010)) {
warnings_ = new com.google.protobuf.LazyStringArrayList();
mutable_bitField0_ |= 0x00000010;
}
warnings_.add(s);
break;
}
case 50: {
java.lang.String s = input.readStringRequireUtf8();
if (!((mutable_bitField0_ & 0x00000020) == 0x00000020)) {
infos_ = new com.google.protobuf.LazyStringArrayList();
mutable_bitField0_ |= 0x00000020;
}
infos_.add(s);
break;
}
default: {
if (!parseUnknownFieldProto3(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
if (((mutable_bitField0_ & 0x00000001) == 0x00000001)) {
commands_ = java.util.Collections.unmodifiableList(commands_);
}
if (((mutable_bitField0_ & 0x00000008) == 0x00000008)) {
errors_ = errors_.getUnmodifiableView();
}
if (((mutable_bitField0_ & 0x00000010) == 0x00000010)) {
warnings_ = warnings_.getUnmodifiableView();
}
if (((mutable_bitField0_ & 0x00000020) == 0x00000020)) {
infos_ = infos_.getUnmodifiableView();
}
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.lightstep.tracer.grpc.Collector.internal_static_lightstep_collector_ReportResponse_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.lightstep.tracer.grpc.Collector.internal_static_lightstep_collector_ReportResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.lightstep.tracer.grpc.ReportResponse.class, com.lightstep.tracer.grpc.ReportResponse.Builder.class);
}
private int bitField0_;
public static final int COMMANDS_FIELD_NUMBER = 1;
private java.util.List commands_;
/**
* repeated .lightstep.collector.Command commands = 1;
*/
public java.util.List getCommandsList() {
return commands_;
}
/**
* repeated .lightstep.collector.Command commands = 1;
*/
public java.util.List extends com.lightstep.tracer.grpc.CommandOrBuilder>
getCommandsOrBuilderList() {
return commands_;
}
/**
* repeated .lightstep.collector.Command commands = 1;
*/
public int getCommandsCount() {
return commands_.size();
}
/**
* repeated .lightstep.collector.Command commands = 1;
*/
public com.lightstep.tracer.grpc.Command getCommands(int index) {
return commands_.get(index);
}
/**
* repeated .lightstep.collector.Command commands = 1;
*/
public com.lightstep.tracer.grpc.CommandOrBuilder getCommandsOrBuilder(
int index) {
return commands_.get(index);
}
public static final int RECEIVE_TIMESTAMP_FIELD_NUMBER = 2;
private com.google.protobuf.Timestamp receiveTimestamp_;
/**
* .google.protobuf.Timestamp receive_timestamp = 2;
*/
public boolean hasReceiveTimestamp() {
return receiveTimestamp_ != null;
}
/**
* .google.protobuf.Timestamp receive_timestamp = 2;
*/
public com.google.protobuf.Timestamp getReceiveTimestamp() {
return receiveTimestamp_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : receiveTimestamp_;
}
/**
* .google.protobuf.Timestamp receive_timestamp = 2;
*/
public com.google.protobuf.TimestampOrBuilder getReceiveTimestampOrBuilder() {
return getReceiveTimestamp();
}
public static final int TRANSMIT_TIMESTAMP_FIELD_NUMBER = 3;
private com.google.protobuf.Timestamp transmitTimestamp_;
/**
* .google.protobuf.Timestamp transmit_timestamp = 3;
*/
public boolean hasTransmitTimestamp() {
return transmitTimestamp_ != null;
}
/**
* .google.protobuf.Timestamp transmit_timestamp = 3;
*/
public com.google.protobuf.Timestamp getTransmitTimestamp() {
return transmitTimestamp_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : transmitTimestamp_;
}
/**
* .google.protobuf.Timestamp transmit_timestamp = 3;
*/
public com.google.protobuf.TimestampOrBuilder getTransmitTimestampOrBuilder() {
return getTransmitTimestamp();
}
public static final int ERRORS_FIELD_NUMBER = 4;
private com.google.protobuf.LazyStringList errors_;
/**
* repeated string errors = 4;
*/
public com.google.protobuf.ProtocolStringList
getErrorsList() {
return errors_;
}
/**
* repeated string errors = 4;
*/
public int getErrorsCount() {
return errors_.size();
}
/**
* repeated string errors = 4;
*/
public java.lang.String getErrors(int index) {
return errors_.get(index);
}
/**
* repeated string errors = 4;
*/
public com.google.protobuf.ByteString
getErrorsBytes(int index) {
return errors_.getByteString(index);
}
public static final int WARNINGS_FIELD_NUMBER = 5;
private com.google.protobuf.LazyStringList warnings_;
/**
* repeated string warnings = 5;
*/
public com.google.protobuf.ProtocolStringList
getWarningsList() {
return warnings_;
}
/**
* repeated string warnings = 5;
*/
public int getWarningsCount() {
return warnings_.size();
}
/**
* repeated string warnings = 5;
*/
public java.lang.String getWarnings(int index) {
return warnings_.get(index);
}
/**
* repeated string warnings = 5;
*/
public com.google.protobuf.ByteString
getWarningsBytes(int index) {
return warnings_.getByteString(index);
}
public static final int INFOS_FIELD_NUMBER = 6;
private com.google.protobuf.LazyStringList infos_;
/**
* repeated string infos = 6;
*/
public com.google.protobuf.ProtocolStringList
getInfosList() {
return infos_;
}
/**
* repeated string infos = 6;
*/
public int getInfosCount() {
return infos_.size();
}
/**
* repeated string infos = 6;
*/
public java.lang.String getInfos(int index) {
return infos_.get(index);
}
/**
* repeated string infos = 6;
*/
public com.google.protobuf.ByteString
getInfosBytes(int index) {
return infos_.getByteString(index);
}
private byte memoizedIsInitialized = -1;
@java.lang.Override
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
@java.lang.Override
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
for (int i = 0; i < commands_.size(); i++) {
output.writeMessage(1, commands_.get(i));
}
if (receiveTimestamp_ != null) {
output.writeMessage(2, getReceiveTimestamp());
}
if (transmitTimestamp_ != null) {
output.writeMessage(3, getTransmitTimestamp());
}
for (int i = 0; i < errors_.size(); i++) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 4, errors_.getRaw(i));
}
for (int i = 0; i < warnings_.size(); i++) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 5, warnings_.getRaw(i));
}
for (int i = 0; i < infos_.size(); i++) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 6, infos_.getRaw(i));
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
for (int i = 0; i < commands_.size(); i++) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, commands_.get(i));
}
if (receiveTimestamp_ != null) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(2, getReceiveTimestamp());
}
if (transmitTimestamp_ != null) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(3, getTransmitTimestamp());
}
{
int dataSize = 0;
for (int i = 0; i < errors_.size(); i++) {
dataSize += computeStringSizeNoTag(errors_.getRaw(i));
}
size += dataSize;
size += 1 * getErrorsList().size();
}
{
int dataSize = 0;
for (int i = 0; i < warnings_.size(); i++) {
dataSize += computeStringSizeNoTag(warnings_.getRaw(i));
}
size += dataSize;
size += 1 * getWarningsList().size();
}
{
int dataSize = 0;
for (int i = 0; i < infos_.size(); i++) {
dataSize += computeStringSizeNoTag(infos_.getRaw(i));
}
size += dataSize;
size += 1 * getInfosList().size();
}
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 com.lightstep.tracer.grpc.ReportResponse)) {
return super.equals(obj);
}
com.lightstep.tracer.grpc.ReportResponse other = (com.lightstep.tracer.grpc.ReportResponse) obj;
boolean result = true;
result = result && getCommandsList()
.equals(other.getCommandsList());
result = result && (hasReceiveTimestamp() == other.hasReceiveTimestamp());
if (hasReceiveTimestamp()) {
result = result && getReceiveTimestamp()
.equals(other.getReceiveTimestamp());
}
result = result && (hasTransmitTimestamp() == other.hasTransmitTimestamp());
if (hasTransmitTimestamp()) {
result = result && getTransmitTimestamp()
.equals(other.getTransmitTimestamp());
}
result = result && getErrorsList()
.equals(other.getErrorsList());
result = result && getWarningsList()
.equals(other.getWarningsList());
result = result && getInfosList()
.equals(other.getInfosList());
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();
if (getCommandsCount() > 0) {
hash = (37 * hash) + COMMANDS_FIELD_NUMBER;
hash = (53 * hash) + getCommandsList().hashCode();
}
if (hasReceiveTimestamp()) {
hash = (37 * hash) + RECEIVE_TIMESTAMP_FIELD_NUMBER;
hash = (53 * hash) + getReceiveTimestamp().hashCode();
}
if (hasTransmitTimestamp()) {
hash = (37 * hash) + TRANSMIT_TIMESTAMP_FIELD_NUMBER;
hash = (53 * hash) + getTransmitTimestamp().hashCode();
}
if (getErrorsCount() > 0) {
hash = (37 * hash) + ERRORS_FIELD_NUMBER;
hash = (53 * hash) + getErrorsList().hashCode();
}
if (getWarningsCount() > 0) {
hash = (37 * hash) + WARNINGS_FIELD_NUMBER;
hash = (53 * hash) + getWarningsList().hashCode();
}
if (getInfosCount() > 0) {
hash = (37 * hash) + INFOS_FIELD_NUMBER;
hash = (53 * hash) + getInfosList().hashCode();
}
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.lightstep.tracer.grpc.ReportResponse parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.lightstep.tracer.grpc.ReportResponse parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.lightstep.tracer.grpc.ReportResponse parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.lightstep.tracer.grpc.ReportResponse parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.lightstep.tracer.grpc.ReportResponse parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.lightstep.tracer.grpc.ReportResponse parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.lightstep.tracer.grpc.ReportResponse parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.lightstep.tracer.grpc.ReportResponse 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.lightstep.tracer.grpc.ReportResponse parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static com.lightstep.tracer.grpc.ReportResponse 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.lightstep.tracer.grpc.ReportResponse parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.lightstep.tracer.grpc.ReportResponse 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.lightstep.tracer.grpc.ReportResponse 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 lightstep.collector.ReportResponse}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:lightstep.collector.ReportResponse)
com.lightstep.tracer.grpc.ReportResponseOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.lightstep.tracer.grpc.Collector.internal_static_lightstep_collector_ReportResponse_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.lightstep.tracer.grpc.Collector.internal_static_lightstep_collector_ReportResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.lightstep.tracer.grpc.ReportResponse.class, com.lightstep.tracer.grpc.ReportResponse.Builder.class);
}
// Construct using com.lightstep.tracer.grpc.ReportResponse.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
getCommandsFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
if (commandsBuilder_ == null) {
commands_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000001);
} else {
commandsBuilder_.clear();
}
if (receiveTimestampBuilder_ == null) {
receiveTimestamp_ = null;
} else {
receiveTimestamp_ = null;
receiveTimestampBuilder_ = null;
}
if (transmitTimestampBuilder_ == null) {
transmitTimestamp_ = null;
} else {
transmitTimestamp_ = null;
transmitTimestampBuilder_ = null;
}
errors_ = com.google.protobuf.LazyStringArrayList.EMPTY;
bitField0_ = (bitField0_ & ~0x00000008);
warnings_ = com.google.protobuf.LazyStringArrayList.EMPTY;
bitField0_ = (bitField0_ & ~0x00000010);
infos_ = com.google.protobuf.LazyStringArrayList.EMPTY;
bitField0_ = (bitField0_ & ~0x00000020);
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return com.lightstep.tracer.grpc.Collector.internal_static_lightstep_collector_ReportResponse_descriptor;
}
@java.lang.Override
public com.lightstep.tracer.grpc.ReportResponse getDefaultInstanceForType() {
return com.lightstep.tracer.grpc.ReportResponse.getDefaultInstance();
}
@java.lang.Override
public com.lightstep.tracer.grpc.ReportResponse build() {
com.lightstep.tracer.grpc.ReportResponse result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.lightstep.tracer.grpc.ReportResponse buildPartial() {
com.lightstep.tracer.grpc.ReportResponse result = new com.lightstep.tracer.grpc.ReportResponse(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (commandsBuilder_ == null) {
if (((bitField0_ & 0x00000001) == 0x00000001)) {
commands_ = java.util.Collections.unmodifiableList(commands_);
bitField0_ = (bitField0_ & ~0x00000001);
}
result.commands_ = commands_;
} else {
result.commands_ = commandsBuilder_.build();
}
if (receiveTimestampBuilder_ == null) {
result.receiveTimestamp_ = receiveTimestamp_;
} else {
result.receiveTimestamp_ = receiveTimestampBuilder_.build();
}
if (transmitTimestampBuilder_ == null) {
result.transmitTimestamp_ = transmitTimestamp_;
} else {
result.transmitTimestamp_ = transmitTimestampBuilder_.build();
}
if (((bitField0_ & 0x00000008) == 0x00000008)) {
errors_ = errors_.getUnmodifiableView();
bitField0_ = (bitField0_ & ~0x00000008);
}
result.errors_ = errors_;
if (((bitField0_ & 0x00000010) == 0x00000010)) {
warnings_ = warnings_.getUnmodifiableView();
bitField0_ = (bitField0_ & ~0x00000010);
}
result.warnings_ = warnings_;
if (((bitField0_ & 0x00000020) == 0x00000020)) {
infos_ = infos_.getUnmodifiableView();
bitField0_ = (bitField0_ & ~0x00000020);
}
result.infos_ = infos_;
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
@java.lang.Override
public Builder clone() {
return (Builder) super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.setField(field, value);
}
@java.lang.Override
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return (Builder) super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return (Builder) super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return (Builder) super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof com.lightstep.tracer.grpc.ReportResponse) {
return mergeFrom((com.lightstep.tracer.grpc.ReportResponse)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.lightstep.tracer.grpc.ReportResponse other) {
if (other == com.lightstep.tracer.grpc.ReportResponse.getDefaultInstance()) return this;
if (commandsBuilder_ == null) {
if (!other.commands_.isEmpty()) {
if (commands_.isEmpty()) {
commands_ = other.commands_;
bitField0_ = (bitField0_ & ~0x00000001);
} else {
ensureCommandsIsMutable();
commands_.addAll(other.commands_);
}
onChanged();
}
} else {
if (!other.commands_.isEmpty()) {
if (commandsBuilder_.isEmpty()) {
commandsBuilder_.dispose();
commandsBuilder_ = null;
commands_ = other.commands_;
bitField0_ = (bitField0_ & ~0x00000001);
commandsBuilder_ =
com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ?
getCommandsFieldBuilder() : null;
} else {
commandsBuilder_.addAllMessages(other.commands_);
}
}
}
if (other.hasReceiveTimestamp()) {
mergeReceiveTimestamp(other.getReceiveTimestamp());
}
if (other.hasTransmitTimestamp()) {
mergeTransmitTimestamp(other.getTransmitTimestamp());
}
if (!other.errors_.isEmpty()) {
if (errors_.isEmpty()) {
errors_ = other.errors_;
bitField0_ = (bitField0_ & ~0x00000008);
} else {
ensureErrorsIsMutable();
errors_.addAll(other.errors_);
}
onChanged();
}
if (!other.warnings_.isEmpty()) {
if (warnings_.isEmpty()) {
warnings_ = other.warnings_;
bitField0_ = (bitField0_ & ~0x00000010);
} else {
ensureWarningsIsMutable();
warnings_.addAll(other.warnings_);
}
onChanged();
}
if (!other.infos_.isEmpty()) {
if (infos_.isEmpty()) {
infos_ = other.infos_;
bitField0_ = (bitField0_ & ~0x00000020);
} else {
ensureInfosIsMutable();
infos_.addAll(other.infos_);
}
onChanged();
}
this.mergeUnknownFields(other.unknownFields);
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 {
com.lightstep.tracer.grpc.ReportResponse parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (com.lightstep.tracer.grpc.ReportResponse) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private java.util.List commands_ =
java.util.Collections.emptyList();
private void ensureCommandsIsMutable() {
if (!((bitField0_ & 0x00000001) == 0x00000001)) {
commands_ = new java.util.ArrayList(commands_);
bitField0_ |= 0x00000001;
}
}
private com.google.protobuf.RepeatedFieldBuilderV3<
com.lightstep.tracer.grpc.Command, com.lightstep.tracer.grpc.Command.Builder, com.lightstep.tracer.grpc.CommandOrBuilder> commandsBuilder_;
/**
* repeated .lightstep.collector.Command commands = 1;
*/
public java.util.List getCommandsList() {
if (commandsBuilder_ == null) {
return java.util.Collections.unmodifiableList(commands_);
} else {
return commandsBuilder_.getMessageList();
}
}
/**
* repeated .lightstep.collector.Command commands = 1;
*/
public int getCommandsCount() {
if (commandsBuilder_ == null) {
return commands_.size();
} else {
return commandsBuilder_.getCount();
}
}
/**
* repeated .lightstep.collector.Command commands = 1;
*/
public com.lightstep.tracer.grpc.Command getCommands(int index) {
if (commandsBuilder_ == null) {
return commands_.get(index);
} else {
return commandsBuilder_.getMessage(index);
}
}
/**
* repeated .lightstep.collector.Command commands = 1;
*/
public Builder setCommands(
int index, com.lightstep.tracer.grpc.Command value) {
if (commandsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureCommandsIsMutable();
commands_.set(index, value);
onChanged();
} else {
commandsBuilder_.setMessage(index, value);
}
return this;
}
/**
* repeated .lightstep.collector.Command commands = 1;
*/
public Builder setCommands(
int index, com.lightstep.tracer.grpc.Command.Builder builderForValue) {
if (commandsBuilder_ == null) {
ensureCommandsIsMutable();
commands_.set(index, builderForValue.build());
onChanged();
} else {
commandsBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
* repeated .lightstep.collector.Command commands = 1;
*/
public Builder addCommands(com.lightstep.tracer.grpc.Command value) {
if (commandsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureCommandsIsMutable();
commands_.add(value);
onChanged();
} else {
commandsBuilder_.addMessage(value);
}
return this;
}
/**
* repeated .lightstep.collector.Command commands = 1;
*/
public Builder addCommands(
int index, com.lightstep.tracer.grpc.Command value) {
if (commandsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureCommandsIsMutable();
commands_.add(index, value);
onChanged();
} else {
commandsBuilder_.addMessage(index, value);
}
return this;
}
/**
* repeated .lightstep.collector.Command commands = 1;
*/
public Builder addCommands(
com.lightstep.tracer.grpc.Command.Builder builderForValue) {
if (commandsBuilder_ == null) {
ensureCommandsIsMutable();
commands_.add(builderForValue.build());
onChanged();
} else {
commandsBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
* repeated .lightstep.collector.Command commands = 1;
*/
public Builder addCommands(
int index, com.lightstep.tracer.grpc.Command.Builder builderForValue) {
if (commandsBuilder_ == null) {
ensureCommandsIsMutable();
commands_.add(index, builderForValue.build());
onChanged();
} else {
commandsBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
* repeated .lightstep.collector.Command commands = 1;
*/
public Builder addAllCommands(
java.lang.Iterable extends com.lightstep.tracer.grpc.Command> values) {
if (commandsBuilder_ == null) {
ensureCommandsIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, commands_);
onChanged();
} else {
commandsBuilder_.addAllMessages(values);
}
return this;
}
/**
* repeated .lightstep.collector.Command commands = 1;
*/
public Builder clearCommands() {
if (commandsBuilder_ == null) {
commands_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000001);
onChanged();
} else {
commandsBuilder_.clear();
}
return this;
}
/**
* repeated .lightstep.collector.Command commands = 1;
*/
public Builder removeCommands(int index) {
if (commandsBuilder_ == null) {
ensureCommandsIsMutable();
commands_.remove(index);
onChanged();
} else {
commandsBuilder_.remove(index);
}
return this;
}
/**
* repeated .lightstep.collector.Command commands = 1;
*/
public com.lightstep.tracer.grpc.Command.Builder getCommandsBuilder(
int index) {
return getCommandsFieldBuilder().getBuilder(index);
}
/**
* repeated .lightstep.collector.Command commands = 1;
*/
public com.lightstep.tracer.grpc.CommandOrBuilder getCommandsOrBuilder(
int index) {
if (commandsBuilder_ == null) {
return commands_.get(index); } else {
return commandsBuilder_.getMessageOrBuilder(index);
}
}
/**
* repeated .lightstep.collector.Command commands = 1;
*/
public java.util.List extends com.lightstep.tracer.grpc.CommandOrBuilder>
getCommandsOrBuilderList() {
if (commandsBuilder_ != null) {
return commandsBuilder_.getMessageOrBuilderList();
} else {
return java.util.Collections.unmodifiableList(commands_);
}
}
/**
* repeated .lightstep.collector.Command commands = 1;
*/
public com.lightstep.tracer.grpc.Command.Builder addCommandsBuilder() {
return getCommandsFieldBuilder().addBuilder(
com.lightstep.tracer.grpc.Command.getDefaultInstance());
}
/**
* repeated .lightstep.collector.Command commands = 1;
*/
public com.lightstep.tracer.grpc.Command.Builder addCommandsBuilder(
int index) {
return getCommandsFieldBuilder().addBuilder(
index, com.lightstep.tracer.grpc.Command.getDefaultInstance());
}
/**
* repeated .lightstep.collector.Command commands = 1;
*/
public java.util.List
getCommandsBuilderList() {
return getCommandsFieldBuilder().getBuilderList();
}
private com.google.protobuf.RepeatedFieldBuilderV3<
com.lightstep.tracer.grpc.Command, com.lightstep.tracer.grpc.Command.Builder, com.lightstep.tracer.grpc.CommandOrBuilder>
getCommandsFieldBuilder() {
if (commandsBuilder_ == null) {
commandsBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3<
com.lightstep.tracer.grpc.Command, com.lightstep.tracer.grpc.Command.Builder, com.lightstep.tracer.grpc.CommandOrBuilder>(
commands_,
((bitField0_ & 0x00000001) == 0x00000001),
getParentForChildren(),
isClean());
commands_ = null;
}
return commandsBuilder_;
}
private com.google.protobuf.Timestamp receiveTimestamp_ = null;
private com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.Timestamp, com.google.protobuf.Timestamp.Builder, com.google.protobuf.TimestampOrBuilder> receiveTimestampBuilder_;
/**
* .google.protobuf.Timestamp receive_timestamp = 2;
*/
public boolean hasReceiveTimestamp() {
return receiveTimestampBuilder_ != null || receiveTimestamp_ != null;
}
/**
* .google.protobuf.Timestamp receive_timestamp = 2;
*/
public com.google.protobuf.Timestamp getReceiveTimestamp() {
if (receiveTimestampBuilder_ == null) {
return receiveTimestamp_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : receiveTimestamp_;
} else {
return receiveTimestampBuilder_.getMessage();
}
}
/**
* .google.protobuf.Timestamp receive_timestamp = 2;
*/
public Builder setReceiveTimestamp(com.google.protobuf.Timestamp value) {
if (receiveTimestampBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
receiveTimestamp_ = value;
onChanged();
} else {
receiveTimestampBuilder_.setMessage(value);
}
return this;
}
/**
* .google.protobuf.Timestamp receive_timestamp = 2;
*/
public Builder setReceiveTimestamp(
com.google.protobuf.Timestamp.Builder builderForValue) {
if (receiveTimestampBuilder_ == null) {
receiveTimestamp_ = builderForValue.build();
onChanged();
} else {
receiveTimestampBuilder_.setMessage(builderForValue.build());
}
return this;
}
/**
* .google.protobuf.Timestamp receive_timestamp = 2;
*/
public Builder mergeReceiveTimestamp(com.google.protobuf.Timestamp value) {
if (receiveTimestampBuilder_ == null) {
if (receiveTimestamp_ != null) {
receiveTimestamp_ =
com.google.protobuf.Timestamp.newBuilder(receiveTimestamp_).mergeFrom(value).buildPartial();
} else {
receiveTimestamp_ = value;
}
onChanged();
} else {
receiveTimestampBuilder_.mergeFrom(value);
}
return this;
}
/**
* .google.protobuf.Timestamp receive_timestamp = 2;
*/
public Builder clearReceiveTimestamp() {
if (receiveTimestampBuilder_ == null) {
receiveTimestamp_ = null;
onChanged();
} else {
receiveTimestamp_ = null;
receiveTimestampBuilder_ = null;
}
return this;
}
/**
* .google.protobuf.Timestamp receive_timestamp = 2;
*/
public com.google.protobuf.Timestamp.Builder getReceiveTimestampBuilder() {
onChanged();
return getReceiveTimestampFieldBuilder().getBuilder();
}
/**
* .google.protobuf.Timestamp receive_timestamp = 2;
*/
public com.google.protobuf.TimestampOrBuilder getReceiveTimestampOrBuilder() {
if (receiveTimestampBuilder_ != null) {
return receiveTimestampBuilder_.getMessageOrBuilder();
} else {
return receiveTimestamp_ == null ?
com.google.protobuf.Timestamp.getDefaultInstance() : receiveTimestamp_;
}
}
/**
* .google.protobuf.Timestamp receive_timestamp = 2;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.Timestamp, com.google.protobuf.Timestamp.Builder, com.google.protobuf.TimestampOrBuilder>
getReceiveTimestampFieldBuilder() {
if (receiveTimestampBuilder_ == null) {
receiveTimestampBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.Timestamp, com.google.protobuf.Timestamp.Builder, com.google.protobuf.TimestampOrBuilder>(
getReceiveTimestamp(),
getParentForChildren(),
isClean());
receiveTimestamp_ = null;
}
return receiveTimestampBuilder_;
}
private com.google.protobuf.Timestamp transmitTimestamp_ = null;
private com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.Timestamp, com.google.protobuf.Timestamp.Builder, com.google.protobuf.TimestampOrBuilder> transmitTimestampBuilder_;
/**
* .google.protobuf.Timestamp transmit_timestamp = 3;
*/
public boolean hasTransmitTimestamp() {
return transmitTimestampBuilder_ != null || transmitTimestamp_ != null;
}
/**
* .google.protobuf.Timestamp transmit_timestamp = 3;
*/
public com.google.protobuf.Timestamp getTransmitTimestamp() {
if (transmitTimestampBuilder_ == null) {
return transmitTimestamp_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : transmitTimestamp_;
} else {
return transmitTimestampBuilder_.getMessage();
}
}
/**
* .google.protobuf.Timestamp transmit_timestamp = 3;
*/
public Builder setTransmitTimestamp(com.google.protobuf.Timestamp value) {
if (transmitTimestampBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
transmitTimestamp_ = value;
onChanged();
} else {
transmitTimestampBuilder_.setMessage(value);
}
return this;
}
/**
* .google.protobuf.Timestamp transmit_timestamp = 3;
*/
public Builder setTransmitTimestamp(
com.google.protobuf.Timestamp.Builder builderForValue) {
if (transmitTimestampBuilder_ == null) {
transmitTimestamp_ = builderForValue.build();
onChanged();
} else {
transmitTimestampBuilder_.setMessage(builderForValue.build());
}
return this;
}
/**
* .google.protobuf.Timestamp transmit_timestamp = 3;
*/
public Builder mergeTransmitTimestamp(com.google.protobuf.Timestamp value) {
if (transmitTimestampBuilder_ == null) {
if (transmitTimestamp_ != null) {
transmitTimestamp_ =
com.google.protobuf.Timestamp.newBuilder(transmitTimestamp_).mergeFrom(value).buildPartial();
} else {
transmitTimestamp_ = value;
}
onChanged();
} else {
transmitTimestampBuilder_.mergeFrom(value);
}
return this;
}
/**
* .google.protobuf.Timestamp transmit_timestamp = 3;
*/
public Builder clearTransmitTimestamp() {
if (transmitTimestampBuilder_ == null) {
transmitTimestamp_ = null;
onChanged();
} else {
transmitTimestamp_ = null;
transmitTimestampBuilder_ = null;
}
return this;
}
/**
* .google.protobuf.Timestamp transmit_timestamp = 3;
*/
public com.google.protobuf.Timestamp.Builder getTransmitTimestampBuilder() {
onChanged();
return getTransmitTimestampFieldBuilder().getBuilder();
}
/**
* .google.protobuf.Timestamp transmit_timestamp = 3;
*/
public com.google.protobuf.TimestampOrBuilder getTransmitTimestampOrBuilder() {
if (transmitTimestampBuilder_ != null) {
return transmitTimestampBuilder_.getMessageOrBuilder();
} else {
return transmitTimestamp_ == null ?
com.google.protobuf.Timestamp.getDefaultInstance() : transmitTimestamp_;
}
}
/**
* .google.protobuf.Timestamp transmit_timestamp = 3;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.Timestamp, com.google.protobuf.Timestamp.Builder, com.google.protobuf.TimestampOrBuilder>
getTransmitTimestampFieldBuilder() {
if (transmitTimestampBuilder_ == null) {
transmitTimestampBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.Timestamp, com.google.protobuf.Timestamp.Builder, com.google.protobuf.TimestampOrBuilder>(
getTransmitTimestamp(),
getParentForChildren(),
isClean());
transmitTimestamp_ = null;
}
return transmitTimestampBuilder_;
}
private com.google.protobuf.LazyStringList errors_ = com.google.protobuf.LazyStringArrayList.EMPTY;
private void ensureErrorsIsMutable() {
if (!((bitField0_ & 0x00000008) == 0x00000008)) {
errors_ = new com.google.protobuf.LazyStringArrayList(errors_);
bitField0_ |= 0x00000008;
}
}
/**
* repeated string errors = 4;
*/
public com.google.protobuf.ProtocolStringList
getErrorsList() {
return errors_.getUnmodifiableView();
}
/**
* repeated string errors = 4;
*/
public int getErrorsCount() {
return errors_.size();
}
/**
* repeated string errors = 4;
*/
public java.lang.String getErrors(int index) {
return errors_.get(index);
}
/**
* repeated string errors = 4;
*/
public com.google.protobuf.ByteString
getErrorsBytes(int index) {
return errors_.getByteString(index);
}
/**
* repeated string errors = 4;
*/
public Builder setErrors(
int index, java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
ensureErrorsIsMutable();
errors_.set(index, value);
onChanged();
return this;
}
/**
* repeated string errors = 4;
*/
public Builder addErrors(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
ensureErrorsIsMutable();
errors_.add(value);
onChanged();
return this;
}
/**
* repeated string errors = 4;
*/
public Builder addAllErrors(
java.lang.Iterable values) {
ensureErrorsIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, errors_);
onChanged();
return this;
}
/**
* repeated string errors = 4;
*/
public Builder clearErrors() {
errors_ = com.google.protobuf.LazyStringArrayList.EMPTY;
bitField0_ = (bitField0_ & ~0x00000008);
onChanged();
return this;
}
/**
* repeated string errors = 4;
*/
public Builder addErrorsBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
ensureErrorsIsMutable();
errors_.add(value);
onChanged();
return this;
}
private com.google.protobuf.LazyStringList warnings_ = com.google.protobuf.LazyStringArrayList.EMPTY;
private void ensureWarningsIsMutable() {
if (!((bitField0_ & 0x00000010) == 0x00000010)) {
warnings_ = new com.google.protobuf.LazyStringArrayList(warnings_);
bitField0_ |= 0x00000010;
}
}
/**
* repeated string warnings = 5;
*/
public com.google.protobuf.ProtocolStringList
getWarningsList() {
return warnings_.getUnmodifiableView();
}
/**
* repeated string warnings = 5;
*/
public int getWarningsCount() {
return warnings_.size();
}
/**
* repeated string warnings = 5;
*/
public java.lang.String getWarnings(int index) {
return warnings_.get(index);
}
/**
* repeated string warnings = 5;
*/
public com.google.protobuf.ByteString
getWarningsBytes(int index) {
return warnings_.getByteString(index);
}
/**
* repeated string warnings = 5;
*/
public Builder setWarnings(
int index, java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
ensureWarningsIsMutable();
warnings_.set(index, value);
onChanged();
return this;
}
/**
* repeated string warnings = 5;
*/
public Builder addWarnings(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
ensureWarningsIsMutable();
warnings_.add(value);
onChanged();
return this;
}
/**
* repeated string warnings = 5;
*/
public Builder addAllWarnings(
java.lang.Iterable values) {
ensureWarningsIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, warnings_);
onChanged();
return this;
}
/**
* repeated string warnings = 5;
*/
public Builder clearWarnings() {
warnings_ = com.google.protobuf.LazyStringArrayList.EMPTY;
bitField0_ = (bitField0_ & ~0x00000010);
onChanged();
return this;
}
/**
* repeated string warnings = 5;
*/
public Builder addWarningsBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
ensureWarningsIsMutable();
warnings_.add(value);
onChanged();
return this;
}
private com.google.protobuf.LazyStringList infos_ = com.google.protobuf.LazyStringArrayList.EMPTY;
private void ensureInfosIsMutable() {
if (!((bitField0_ & 0x00000020) == 0x00000020)) {
infos_ = new com.google.protobuf.LazyStringArrayList(infos_);
bitField0_ |= 0x00000020;
}
}
/**
* repeated string infos = 6;
*/
public com.google.protobuf.ProtocolStringList
getInfosList() {
return infos_.getUnmodifiableView();
}
/**
* repeated string infos = 6;
*/
public int getInfosCount() {
return infos_.size();
}
/**
* repeated string infos = 6;
*/
public java.lang.String getInfos(int index) {
return infos_.get(index);
}
/**
* repeated string infos = 6;
*/
public com.google.protobuf.ByteString
getInfosBytes(int index) {
return infos_.getByteString(index);
}
/**
* repeated string infos = 6;
*/
public Builder setInfos(
int index, java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
ensureInfosIsMutable();
infos_.set(index, value);
onChanged();
return this;
}
/**
* repeated string infos = 6;
*/
public Builder addInfos(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
ensureInfosIsMutable();
infos_.add(value);
onChanged();
return this;
}
/**
* repeated string infos = 6;
*/
public Builder addAllInfos(
java.lang.Iterable values) {
ensureInfosIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, infos_);
onChanged();
return this;
}
/**
* repeated string infos = 6;
*/
public Builder clearInfos() {
infos_ = com.google.protobuf.LazyStringArrayList.EMPTY;
bitField0_ = (bitField0_ & ~0x00000020);
onChanged();
return this;
}
/**
* repeated string infos = 6;
*/
public Builder addInfosBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
ensureInfosIsMutable();
infos_.add(value);
onChanged();
return this;
}
@java.lang.Override
public final Builder setUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFieldsProto3(unknownFields);
}
@java.lang.Override
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:lightstep.collector.ReportResponse)
}
// @@protoc_insertion_point(class_scope:lightstep.collector.ReportResponse)
private static final com.lightstep.tracer.grpc.ReportResponse DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.lightstep.tracer.grpc.ReportResponse();
}
public static com.lightstep.tracer.grpc.ReportResponse getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public ReportResponse parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new ReportResponse(input, extensionRegistry);
}
};
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.lightstep.tracer.grpc.ReportResponse getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy