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

lightstep.com.google.api.SourceInfo Maven / Gradle / Ivy

// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: google/api/source_info.proto

package lightstep.lightstep.lightstep.com.google.api;

/**
 * 
 * Source information used to create a Service Config
 * 
* * Protobuf type {@code google.api.SourceInfo} */ public final class SourceInfo extends lightstep.com.lightstep.lightstep.lightstep.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:google.api.SourceInfo) SourceInfoOrBuilder { private static final long serialVersionUID = 0L; // Use SourceInfo.newBuilder() to construct. private SourceInfo(lightstep.com.lightstep.lightstep.lightstep.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private SourceInfo() { sourceFiles_ = java.util.Collections.emptyList(); } @Override public final lightstep.com.lightstep.lightstep.lightstep.google.protobuf.UnknownFieldSet getUnknownFields() { return this.unknownFields; } private SourceInfo( lightstep.com.lightstep.lightstep.lightstep.google.protobuf.CodedInputStream input, lightstep.com.lightstep.lightstep.lightstep.google.protobuf.ExtensionRegistryLite extensionRegistry) throws lightstep.com.lightstep.lightstep.lightstep.google.protobuf.InvalidProtocolBufferException { this(); if (extensionRegistry == null) { throw new NullPointerException(); } int mutable_bitField0_ = 0; lightstep.com.lightstep.lightstep.lightstep.google.protobuf.UnknownFieldSet.Builder unknownFields = lightstep.com.lightstep.lightstep.lightstep.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) != 0)) { sourceFiles_ = new java.util.ArrayList(); mutable_bitField0_ |= 0x00000001; } sourceFiles_.add( input.readMessage(lightstep.com.lightstep.lightstep.lightstep.google.protobuf.Any.parser(), extensionRegistry)); break; } default: { if (!parseUnknownField( input, unknownFields, extensionRegistry, tag)) { done = true; } break; } } } } catch (lightstep.com.lightstep.lightstep.lightstep.google.protobuf.InvalidProtocolBufferException e) { throw e.setUnfinishedMessage(this); } catch (java.io.IOException e) { throw new lightstep.com.lightstep.lightstep.lightstep.google.protobuf.InvalidProtocolBufferException( e).setUnfinishedMessage(this); } finally { if (((mutable_bitField0_ & 0x00000001) != 0)) { sourceFiles_ = java.util.Collections.unmodifiableList(sourceFiles_); } this.unknownFields = unknownFields.build(); makeExtensionsImmutable(); } } public static final lightstep.com.lightstep.lightstep.lightstep.google.protobuf.Descriptors.Descriptor getDescriptor() { return lightstep.lightstep.lightstep.com.google.api.SourceInfoProto.internal_static_google_api_SourceInfo_descriptor; } @Override protected FieldAccessorTable internalGetFieldAccessorTable() { return lightstep.lightstep.lightstep.com.google.api.SourceInfoProto.internal_static_google_api_SourceInfo_fieldAccessorTable .ensureFieldAccessorsInitialized( SourceInfo.class, Builder.class); } public static final int SOURCE_FILES_FIELD_NUMBER = 1; private java.util.List sourceFiles_; /** *
   * All files used during config generation.
   * 
* * repeated .lightstep.lightstep.lightstep.google.protobuf.Any source_files = 1; */ public java.util.List getSourceFilesList() { return sourceFiles_; } /** *
   * All files used during config generation.
   * 
* * repeated .lightstep.lightstep.lightstep.google.protobuf.Any source_files = 1; */ public java.util.List getSourceFilesOrBuilderList() { return sourceFiles_; } /** *
   * All files used during config generation.
   * 
* * repeated .lightstep.lightstep.lightstep.google.protobuf.Any source_files = 1; */ public int getSourceFilesCount() { return sourceFiles_.size(); } /** *
   * All files used during config generation.
   * 
* * repeated .lightstep.lightstep.lightstep.google.protobuf.Any source_files = 1; */ public lightstep.com.lightstep.lightstep.lightstep.google.protobuf.Any getSourceFiles(int index) { return sourceFiles_.get(index); } /** *
   * All files used during config generation.
   * 
* * repeated .lightstep.lightstep.lightstep.google.protobuf.Any source_files = 1; */ public lightstep.com.lightstep.lightstep.lightstep.google.protobuf.AnyOrBuilder getSourceFilesOrBuilder( int index) { return sourceFiles_.get(index); } private byte memoizedIsInitialized = -1; @Override public final boolean isInitialized() { byte isInitialized = memoizedIsInitialized; if (isInitialized == 1) return true; if (isInitialized == 0) return false; memoizedIsInitialized = 1; return true; } @Override public void writeTo(lightstep.com.lightstep.lightstep.lightstep.google.protobuf.CodedOutputStream output) throws java.io.IOException { for (int i = 0; i < sourceFiles_.size(); i++) { output.writeMessage(1, sourceFiles_.get(i)); } unknownFields.writeTo(output); } @Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; for (int i = 0; i < sourceFiles_.size(); i++) { size += lightstep.com.lightstep.lightstep.lightstep.google.protobuf.CodedOutputStream .computeMessageSize(1, sourceFiles_.get(i)); } size += unknownFields.getSerializedSize(); memoizedSize = size; return size; } @Override public boolean equals(final Object obj) { if (obj == this) { return true; } if (!(obj instanceof SourceInfo)) { return super.equals(obj); } SourceInfo other = (SourceInfo) obj; if (!getSourceFilesList() .equals(other.getSourceFilesList())) return false; if (!unknownFields.equals(other.unknownFields)) return false; return true; } @Override public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; } int hash = 41; hash = (19 * hash) + getDescriptor().hashCode(); if (getSourceFilesCount() > 0) { hash = (37 * hash) + SOURCE_FILES_FIELD_NUMBER; hash = (53 * hash) + getSourceFilesList().hashCode(); } hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; } public static SourceInfo parseFrom( java.nio.ByteBuffer data) throws lightstep.com.lightstep.lightstep.lightstep.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static SourceInfo parseFrom( java.nio.ByteBuffer data, lightstep.com.lightstep.lightstep.lightstep.google.protobuf.ExtensionRegistryLite extensionRegistry) throws lightstep.com.lightstep.lightstep.lightstep.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static SourceInfo parseFrom( lightstep.com.lightstep.lightstep.lightstep.google.protobuf.ByteString data) throws lightstep.com.lightstep.lightstep.lightstep.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static SourceInfo parseFrom( lightstep.com.lightstep.lightstep.lightstep.google.protobuf.ByteString data, lightstep.com.lightstep.lightstep.lightstep.google.protobuf.ExtensionRegistryLite extensionRegistry) throws lightstep.com.lightstep.lightstep.lightstep.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static SourceInfo parseFrom(byte[] data) throws lightstep.com.lightstep.lightstep.lightstep.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static SourceInfo parseFrom( byte[] data, lightstep.com.lightstep.lightstep.lightstep.google.protobuf.ExtensionRegistryLite extensionRegistry) throws lightstep.com.lightstep.lightstep.lightstep.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static SourceInfo parseFrom(java.io.InputStream input) throws java.io.IOException { return lightstep.com.lightstep.lightstep.lightstep.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static SourceInfo parseFrom( java.io.InputStream input, lightstep.com.lightstep.lightstep.lightstep.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return lightstep.com.lightstep.lightstep.lightstep.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input, extensionRegistry); } public static SourceInfo parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return lightstep.com.lightstep.lightstep.lightstep.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static SourceInfo parseDelimitedFrom( java.io.InputStream input, lightstep.com.lightstep.lightstep.lightstep.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return lightstep.com.lightstep.lightstep.lightstep.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input, extensionRegistry); } public static SourceInfo parseFrom( lightstep.com.lightstep.lightstep.lightstep.google.protobuf.CodedInputStream input) throws java.io.IOException { return lightstep.com.lightstep.lightstep.lightstep.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static SourceInfo parseFrom( lightstep.com.lightstep.lightstep.lightstep.google.protobuf.CodedInputStream input, lightstep.com.lightstep.lightstep.lightstep.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return lightstep.com.lightstep.lightstep.lightstep.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input, extensionRegistry); } @Override public Builder newBuilderForType() { return newBuilder(); } public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } public static Builder newBuilder(SourceInfo prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } @Override public Builder toBuilder() { return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); } @Override protected Builder newBuilderForType( BuilderParent parent) { Builder builder = new Builder(parent); return builder; } /** *
   * Source information used to create a Service Config
   * 
* * Protobuf type {@code google.api.SourceInfo} */ public static final class Builder extends lightstep.com.lightstep.lightstep.lightstep.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:google.api.SourceInfo) lightstep.lightstep.lightstep.com.google.api.SourceInfoOrBuilder { public static final lightstep.com.lightstep.lightstep.lightstep.google.protobuf.Descriptors.Descriptor getDescriptor() { return lightstep.lightstep.lightstep.com.google.api.SourceInfoProto.internal_static_google_api_SourceInfo_descriptor; } @Override protected FieldAccessorTable internalGetFieldAccessorTable() { return lightstep.lightstep.lightstep.com.google.api.SourceInfoProto.internal_static_google_api_SourceInfo_fieldAccessorTable .ensureFieldAccessorsInitialized( SourceInfo.class, Builder.class); } // Construct using lightstep.lightstep.lightstep.com.google.api.SourceInfo.newBuilder() private Builder() { maybeForceBuilderInitialization(); } private Builder( BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } private void maybeForceBuilderInitialization() { if (lightstep.com.lightstep.lightstep.lightstep.google.protobuf.GeneratedMessageV3 .alwaysUseFieldBuilders) { getSourceFilesFieldBuilder(); } } @Override public Builder clear() { super.clear(); if (sourceFilesBuilder_ == null) { sourceFiles_ = java.util.Collections.emptyList(); bitField0_ = (bitField0_ & ~0x00000001); } else { sourceFilesBuilder_.clear(); } return this; } @Override public lightstep.com.lightstep.lightstep.lightstep.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return lightstep.lightstep.lightstep.com.google.api.SourceInfoProto.internal_static_google_api_SourceInfo_descriptor; } @Override public SourceInfo getDefaultInstanceForType() { return SourceInfo.getDefaultInstance(); } @Override public SourceInfo build() { SourceInfo result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @Override public SourceInfo buildPartial() { SourceInfo result = new SourceInfo(this); int from_bitField0_ = bitField0_; if (sourceFilesBuilder_ == null) { if (((bitField0_ & 0x00000001) != 0)) { sourceFiles_ = java.util.Collections.unmodifiableList(sourceFiles_); bitField0_ = (bitField0_ & ~0x00000001); } result.sourceFiles_ = sourceFiles_; } else { result.sourceFiles_ = sourceFilesBuilder_.build(); } onBuilt(); return result; } @Override public Builder clone() { return super.clone(); } @Override public Builder setField( lightstep.com.lightstep.lightstep.lightstep.google.protobuf.Descriptors.FieldDescriptor field, Object value) { return super.setField(field, value); } @Override public Builder clearField( lightstep.com.lightstep.lightstep.lightstep.google.protobuf.Descriptors.FieldDescriptor field) { return super.clearField(field); } @Override public Builder clearOneof( lightstep.com.lightstep.lightstep.lightstep.google.protobuf.Descriptors.OneofDescriptor oneof) { return super.clearOneof(oneof); } @Override public Builder setRepeatedField( lightstep.com.lightstep.lightstep.lightstep.google.protobuf.Descriptors.FieldDescriptor field, int index, Object value) { return super.setRepeatedField(field, index, value); } @Override public Builder addRepeatedField( lightstep.com.lightstep.lightstep.lightstep.google.protobuf.Descriptors.FieldDescriptor field, Object value) { return super.addRepeatedField(field, value); } @Override public Builder mergeFrom(lightstep.com.lightstep.lightstep.lightstep.google.protobuf.Message other) { if (other instanceof SourceInfo) { return mergeFrom((SourceInfo)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(SourceInfo other) { if (other == SourceInfo.getDefaultInstance()) return this; if (sourceFilesBuilder_ == null) { if (!other.sourceFiles_.isEmpty()) { if (sourceFiles_.isEmpty()) { sourceFiles_ = other.sourceFiles_; bitField0_ = (bitField0_ & ~0x00000001); } else { ensureSourceFilesIsMutable(); sourceFiles_.addAll(other.sourceFiles_); } onChanged(); } } else { if (!other.sourceFiles_.isEmpty()) { if (sourceFilesBuilder_.isEmpty()) { sourceFilesBuilder_.dispose(); sourceFilesBuilder_ = null; sourceFiles_ = other.sourceFiles_; bitField0_ = (bitField0_ & ~0x00000001); sourceFilesBuilder_ = lightstep.com.lightstep.lightstep.lightstep.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? getSourceFilesFieldBuilder() : null; } else { sourceFilesBuilder_.addAllMessages(other.sourceFiles_); } } } this.mergeUnknownFields(other.unknownFields); onChanged(); return this; } @Override public final boolean isInitialized() { return true; } @Override public Builder mergeFrom( lightstep.com.lightstep.lightstep.lightstep.google.protobuf.CodedInputStream input, lightstep.com.lightstep.lightstep.lightstep.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { SourceInfo parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (lightstep.com.lightstep.lightstep.lightstep.google.protobuf.InvalidProtocolBufferException e) { parsedMessage = (SourceInfo) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { mergeFrom(parsedMessage); } } return this; } private int bitField0_; private java.util.List sourceFiles_ = java.util.Collections.emptyList(); private void ensureSourceFilesIsMutable() { if (!((bitField0_ & 0x00000001) != 0)) { sourceFiles_ = new java.util.ArrayList(sourceFiles_); bitField0_ |= 0x00000001; } } private lightstep.com.lightstep.lightstep.lightstep.google.protobuf.RepeatedFieldBuilderV3< lightstep.com.lightstep.lightstep.lightstep.google.protobuf.Any, lightstep.com.lightstep.lightstep.lightstep.google.protobuf.Any.Builder, lightstep.com.lightstep.lightstep.lightstep.google.protobuf.AnyOrBuilder> sourceFilesBuilder_; /** *
     * All files used during config generation.
     * 
* * repeated .lightstep.lightstep.lightstep.google.protobuf.Any source_files = 1; */ public java.util.List getSourceFilesList() { if (sourceFilesBuilder_ == null) { return java.util.Collections.unmodifiableList(sourceFiles_); } else { return sourceFilesBuilder_.getMessageList(); } } /** *
     * All files used during config generation.
     * 
* * repeated .lightstep.lightstep.lightstep.google.protobuf.Any source_files = 1; */ public int getSourceFilesCount() { if (sourceFilesBuilder_ == null) { return sourceFiles_.size(); } else { return sourceFilesBuilder_.getCount(); } } /** *
     * All files used during config generation.
     * 
* * repeated .lightstep.lightstep.lightstep.google.protobuf.Any source_files = 1; */ public lightstep.com.lightstep.lightstep.lightstep.google.protobuf.Any getSourceFiles(int index) { if (sourceFilesBuilder_ == null) { return sourceFiles_.get(index); } else { return sourceFilesBuilder_.getMessage(index); } } /** *
     * All files used during config generation.
     * 
* * repeated .lightstep.lightstep.lightstep.google.protobuf.Any source_files = 1; */ public Builder setSourceFiles( int index, lightstep.com.lightstep.lightstep.lightstep.google.protobuf.Any value) { if (sourceFilesBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensureSourceFilesIsMutable(); sourceFiles_.set(index, value); onChanged(); } else { sourceFilesBuilder_.setMessage(index, value); } return this; } /** *
     * All files used during config generation.
     * 
* * repeated .lightstep.lightstep.lightstep.google.protobuf.Any source_files = 1; */ public Builder setSourceFiles( int index, lightstep.com.lightstep.lightstep.lightstep.google.protobuf.Any.Builder builderForValue) { if (sourceFilesBuilder_ == null) { ensureSourceFilesIsMutable(); sourceFiles_.set(index, builderForValue.build()); onChanged(); } else { sourceFilesBuilder_.setMessage(index, builderForValue.build()); } return this; } /** *
     * All files used during config generation.
     * 
* * repeated .lightstep.lightstep.lightstep.google.protobuf.Any source_files = 1; */ public Builder addSourceFiles(lightstep.com.lightstep.lightstep.lightstep.google.protobuf.Any value) { if (sourceFilesBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensureSourceFilesIsMutable(); sourceFiles_.add(value); onChanged(); } else { sourceFilesBuilder_.addMessage(value); } return this; } /** *
     * All files used during config generation.
     * 
* * repeated .lightstep.lightstep.lightstep.google.protobuf.Any source_files = 1; */ public Builder addSourceFiles( int index, lightstep.com.lightstep.lightstep.lightstep.google.protobuf.Any value) { if (sourceFilesBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensureSourceFilesIsMutable(); sourceFiles_.add(index, value); onChanged(); } else { sourceFilesBuilder_.addMessage(index, value); } return this; } /** *
     * All files used during config generation.
     * 
* * repeated .lightstep.lightstep.lightstep.google.protobuf.Any source_files = 1; */ public Builder addSourceFiles( lightstep.com.lightstep.lightstep.lightstep.google.protobuf.Any.Builder builderForValue) { if (sourceFilesBuilder_ == null) { ensureSourceFilesIsMutable(); sourceFiles_.add(builderForValue.build()); onChanged(); } else { sourceFilesBuilder_.addMessage(builderForValue.build()); } return this; } /** *
     * All files used during config generation.
     * 
* * repeated .lightstep.lightstep.lightstep.google.protobuf.Any source_files = 1; */ public Builder addSourceFiles( int index, lightstep.com.lightstep.lightstep.lightstep.google.protobuf.Any.Builder builderForValue) { if (sourceFilesBuilder_ == null) { ensureSourceFilesIsMutable(); sourceFiles_.add(index, builderForValue.build()); onChanged(); } else { sourceFilesBuilder_.addMessage(index, builderForValue.build()); } return this; } /** *
     * All files used during config generation.
     * 
* * repeated .lightstep.lightstep.lightstep.google.protobuf.Any source_files = 1; */ public Builder addAllSourceFiles( Iterable values) { if (sourceFilesBuilder_ == null) { ensureSourceFilesIsMutable(); lightstep.com.lightstep.lightstep.lightstep.google.protobuf.AbstractMessageLite.Builder.addAll( values, sourceFiles_); onChanged(); } else { sourceFilesBuilder_.addAllMessages(values); } return this; } /** *
     * All files used during config generation.
     * 
* * repeated .lightstep.lightstep.lightstep.google.protobuf.Any source_files = 1; */ public Builder clearSourceFiles() { if (sourceFilesBuilder_ == null) { sourceFiles_ = java.util.Collections.emptyList(); bitField0_ = (bitField0_ & ~0x00000001); onChanged(); } else { sourceFilesBuilder_.clear(); } return this; } /** *
     * All files used during config generation.
     * 
* * repeated .lightstep.lightstep.lightstep.google.protobuf.Any source_files = 1; */ public Builder removeSourceFiles(int index) { if (sourceFilesBuilder_ == null) { ensureSourceFilesIsMutable(); sourceFiles_.remove(index); onChanged(); } else { sourceFilesBuilder_.remove(index); } return this; } /** *
     * All files used during config generation.
     * 
* * repeated .lightstep.lightstep.lightstep.google.protobuf.Any source_files = 1; */ public lightstep.com.lightstep.lightstep.lightstep.google.protobuf.Any.Builder getSourceFilesBuilder( int index) { return getSourceFilesFieldBuilder().getBuilder(index); } /** *
     * All files used during config generation.
     * 
* * repeated .lightstep.lightstep.lightstep.google.protobuf.Any source_files = 1; */ public lightstep.com.lightstep.lightstep.lightstep.google.protobuf.AnyOrBuilder getSourceFilesOrBuilder( int index) { if (sourceFilesBuilder_ == null) { return sourceFiles_.get(index); } else { return sourceFilesBuilder_.getMessageOrBuilder(index); } } /** *
     * All files used during config generation.
     * 
* * repeated .lightstep.lightstep.lightstep.google.protobuf.Any source_files = 1; */ public java.util.List getSourceFilesOrBuilderList() { if (sourceFilesBuilder_ != null) { return sourceFilesBuilder_.getMessageOrBuilderList(); } else { return java.util.Collections.unmodifiableList(sourceFiles_); } } /** *
     * All files used during config generation.
     * 
* * repeated .lightstep.lightstep.lightstep.google.protobuf.Any source_files = 1; */ public lightstep.com.lightstep.lightstep.lightstep.google.protobuf.Any.Builder addSourceFilesBuilder() { return getSourceFilesFieldBuilder().addBuilder( lightstep.com.lightstep.lightstep.lightstep.google.protobuf.Any.getDefaultInstance()); } /** *
     * All files used during config generation.
     * 
* * repeated .lightstep.lightstep.lightstep.google.protobuf.Any source_files = 1; */ public lightstep.com.lightstep.lightstep.lightstep.google.protobuf.Any.Builder addSourceFilesBuilder( int index) { return getSourceFilesFieldBuilder().addBuilder( index, lightstep.com.lightstep.lightstep.lightstep.google.protobuf.Any.getDefaultInstance()); } /** *
     * All files used during config generation.
     * 
* * repeated .lightstep.lightstep.lightstep.google.protobuf.Any source_files = 1; */ public java.util.List getSourceFilesBuilderList() { return getSourceFilesFieldBuilder().getBuilderList(); } private lightstep.com.lightstep.lightstep.lightstep.google.protobuf.RepeatedFieldBuilderV3< lightstep.com.lightstep.lightstep.lightstep.google.protobuf.Any, lightstep.com.lightstep.lightstep.lightstep.google.protobuf.Any.Builder, lightstep.com.lightstep.lightstep.lightstep.google.protobuf.AnyOrBuilder> getSourceFilesFieldBuilder() { if (sourceFilesBuilder_ == null) { sourceFilesBuilder_ = new lightstep.com.lightstep.lightstep.lightstep.google.protobuf.RepeatedFieldBuilderV3< lightstep.com.lightstep.lightstep.lightstep.google.protobuf.Any, lightstep.com.lightstep.lightstep.lightstep.google.protobuf.Any.Builder, lightstep.com.lightstep.lightstep.lightstep.google.protobuf.AnyOrBuilder>( sourceFiles_, ((bitField0_ & 0x00000001) != 0), getParentForChildren(), isClean()); sourceFiles_ = null; } return sourceFilesBuilder_; } @Override public final Builder setUnknownFields( final lightstep.com.lightstep.lightstep.lightstep.google.protobuf.UnknownFieldSet unknownFields) { return super.setUnknownFields(unknownFields); } @Override public final Builder mergeUnknownFields( final lightstep.com.lightstep.lightstep.lightstep.google.protobuf.UnknownFieldSet unknownFields) { return super.mergeUnknownFields(unknownFields); } // @@protoc_insertion_point(builder_scope:google.api.SourceInfo) } // @@protoc_insertion_point(class_scope:google.api.SourceInfo) private static final SourceInfo DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new SourceInfo(); } public static SourceInfo getDefaultInstance() { return DEFAULT_INSTANCE; } private static final lightstep.com.lightstep.lightstep.lightstep.google.protobuf.Parser PARSER = new lightstep.com.lightstep.lightstep.lightstep.google.protobuf.AbstractParser() { @Override public SourceInfo parsePartialFrom( lightstep.com.lightstep.lightstep.lightstep.google.protobuf.CodedInputStream input, lightstep.com.lightstep.lightstep.lightstep.google.protobuf.ExtensionRegistryLite extensionRegistry) throws lightstep.com.lightstep.lightstep.lightstep.google.protobuf.InvalidProtocolBufferException { return new SourceInfo(input, extensionRegistry); } }; public static lightstep.com.lightstep.lightstep.lightstep.google.protobuf.Parser parser() { return PARSER; } @Override public lightstep.com.lightstep.lightstep.lightstep.google.protobuf.Parser getParserForType() { return PARSER; } @Override public SourceInfo getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy