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

io.opentelemetry.proto.profiles.v1experimental.Function Maven / Gradle / Ivy

The newest version!
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: opentelemetry/proto/profiles/v1experimental/pprofextended.proto

package io.opentelemetry.proto.profiles.v1experimental;

/**
 * 
 * Describes a function, including its human-readable name, system name,
 * source file, and starting line number in the source.
 * 
* * Protobuf type {@code opentelemetry.proto.profiles.v1experimental.Function} */ public final class Function extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:opentelemetry.proto.profiles.v1experimental.Function) FunctionOrBuilder { private static final long serialVersionUID = 0L; // Use Function.newBuilder() to construct. private Function(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private Function() { } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance( UnusedPrivateParameter unused) { return new Function(); } @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return this.unknownFields; } private Function( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { this(); if (extensionRegistry == null) { throw new java.lang.NullPointerException(); } 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 8: { id_ = input.readUInt64(); break; } case 16: { name_ = input.readInt64(); break; } case 24: { systemName_ = input.readInt64(); break; } case 32: { filename_ = input.readInt64(); break; } case 40: { startLine_ = input.readInt64(); break; } default: { if (!parseUnknownField( input, unknownFields, extensionRegistry, tag)) { done = true; } break; } } } } catch (com.google.protobuf.InvalidProtocolBufferException e) { throw e.setUnfinishedMessage(this); } catch (com.google.protobuf.UninitializedMessageException e) { throw e.asInvalidProtocolBufferException().setUnfinishedMessage(this); } catch (java.io.IOException e) { throw new com.google.protobuf.InvalidProtocolBufferException( e).setUnfinishedMessage(this); } finally { this.unknownFields = unknownFields.build(); makeExtensionsImmutable(); } } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return io.opentelemetry.proto.profiles.v1experimental.Pprofextended.internal_static_opentelemetry_proto_profiles_v1experimental_Function_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return io.opentelemetry.proto.profiles.v1experimental.Pprofextended.internal_static_opentelemetry_proto_profiles_v1experimental_Function_fieldAccessorTable .ensureFieldAccessorsInitialized( io.opentelemetry.proto.profiles.v1experimental.Function.class, io.opentelemetry.proto.profiles.v1experimental.Function.Builder.class); } public static final int ID_FIELD_NUMBER = 1; private long id_; /** *
   * Unique nonzero id for the function. [deprecated]
   * 
* * uint64 id = 1; * @return The id. */ @java.lang.Override public long getId() { return id_; } public static final int NAME_FIELD_NUMBER = 2; private long name_; /** *
   * Name of the function, in human-readable form if available.
   * 
* * int64 name = 2; * @return The name. */ @java.lang.Override public long getName() { return name_; } public static final int SYSTEM_NAME_FIELD_NUMBER = 3; private long systemName_; /** *
   * Name of the function, as identified by the system.
   * For instance, it can be a C++ mangled name.
   * 
* * int64 system_name = 3; * @return The systemName. */ @java.lang.Override public long getSystemName() { return systemName_; } public static final int FILENAME_FIELD_NUMBER = 4; private long filename_; /** *
   * Source file containing the function.
   * 
* * int64 filename = 4; * @return The filename. */ @java.lang.Override public long getFilename() { return filename_; } public static final int START_LINE_FIELD_NUMBER = 5; private long startLine_; /** *
   * Line number in source file.
   * 
* * int64 start_line = 5; * @return The startLine. */ @java.lang.Override public long getStartLine() { return startLine_; } private byte memoizedIsInitialized = -1; @java.lang.Override public final boolean isInitialized() { byte isInitialized = memoizedIsInitialized; if (isInitialized == 1) return true; if (isInitialized == 0) return false; memoizedIsInitialized = 1; return true; } @java.lang.Override public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { if (id_ != 0L) { output.writeUInt64(1, id_); } if (name_ != 0L) { output.writeInt64(2, name_); } if (systemName_ != 0L) { output.writeInt64(3, systemName_); } if (filename_ != 0L) { output.writeInt64(4, filename_); } if (startLine_ != 0L) { output.writeInt64(5, startLine_); } unknownFields.writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (id_ != 0L) { size += com.google.protobuf.CodedOutputStream .computeUInt64Size(1, id_); } if (name_ != 0L) { size += com.google.protobuf.CodedOutputStream .computeInt64Size(2, name_); } if (systemName_ != 0L) { size += com.google.protobuf.CodedOutputStream .computeInt64Size(3, systemName_); } if (filename_ != 0L) { size += com.google.protobuf.CodedOutputStream .computeInt64Size(4, filename_); } if (startLine_ != 0L) { size += com.google.protobuf.CodedOutputStream .computeInt64Size(5, startLine_); } 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 io.opentelemetry.proto.profiles.v1experimental.Function)) { return super.equals(obj); } io.opentelemetry.proto.profiles.v1experimental.Function other = (io.opentelemetry.proto.profiles.v1experimental.Function) obj; if (getId() != other.getId()) return false; if (getName() != other.getName()) return false; if (getSystemName() != other.getSystemName()) return false; if (getFilename() != other.getFilename()) return false; if (getStartLine() != other.getStartLine()) return false; if (!unknownFields.equals(other.unknownFields)) return false; return true; } @java.lang.Override public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; } int hash = 41; hash = (19 * hash) + getDescriptor().hashCode(); hash = (37 * hash) + ID_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashLong( getId()); hash = (37 * hash) + NAME_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashLong( getName()); hash = (37 * hash) + SYSTEM_NAME_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashLong( getSystemName()); hash = (37 * hash) + FILENAME_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashLong( getFilename()); hash = (37 * hash) + START_LINE_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashLong( getStartLine()); hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; } public static io.opentelemetry.proto.profiles.v1experimental.Function parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static io.opentelemetry.proto.profiles.v1experimental.Function parseFrom( java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static io.opentelemetry.proto.profiles.v1experimental.Function parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static io.opentelemetry.proto.profiles.v1experimental.Function parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static io.opentelemetry.proto.profiles.v1experimental.Function parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static io.opentelemetry.proto.profiles.v1experimental.Function parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static io.opentelemetry.proto.profiles.v1experimental.Function parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static io.opentelemetry.proto.profiles.v1experimental.Function 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 io.opentelemetry.proto.profiles.v1experimental.Function parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static io.opentelemetry.proto.profiles.v1experimental.Function 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 io.opentelemetry.proto.profiles.v1experimental.Function parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static io.opentelemetry.proto.profiles.v1experimental.Function 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(io.opentelemetry.proto.profiles.v1experimental.Function 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; } /** *
   * Describes a function, including its human-readable name, system name,
   * source file, and starting line number in the source.
   * 
* * Protobuf type {@code opentelemetry.proto.profiles.v1experimental.Function} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:opentelemetry.proto.profiles.v1experimental.Function) io.opentelemetry.proto.profiles.v1experimental.FunctionOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return io.opentelemetry.proto.profiles.v1experimental.Pprofextended.internal_static_opentelemetry_proto_profiles_v1experimental_Function_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return io.opentelemetry.proto.profiles.v1experimental.Pprofextended.internal_static_opentelemetry_proto_profiles_v1experimental_Function_fieldAccessorTable .ensureFieldAccessorsInitialized( io.opentelemetry.proto.profiles.v1experimental.Function.class, io.opentelemetry.proto.profiles.v1experimental.Function.Builder.class); } // Construct using io.opentelemetry.proto.profiles.v1experimental.Function.newBuilder() private Builder() { maybeForceBuilderInitialization(); } private Builder( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } private void maybeForceBuilderInitialization() { if (com.google.protobuf.GeneratedMessageV3 .alwaysUseFieldBuilders) { } } @java.lang.Override public Builder clear() { super.clear(); id_ = 0L; name_ = 0L; systemName_ = 0L; filename_ = 0L; startLine_ = 0L; return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return io.opentelemetry.proto.profiles.v1experimental.Pprofextended.internal_static_opentelemetry_proto_profiles_v1experimental_Function_descriptor; } @java.lang.Override public io.opentelemetry.proto.profiles.v1experimental.Function getDefaultInstanceForType() { return io.opentelemetry.proto.profiles.v1experimental.Function.getDefaultInstance(); } @java.lang.Override public io.opentelemetry.proto.profiles.v1experimental.Function build() { io.opentelemetry.proto.profiles.v1experimental.Function result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public io.opentelemetry.proto.profiles.v1experimental.Function buildPartial() { io.opentelemetry.proto.profiles.v1experimental.Function result = new io.opentelemetry.proto.profiles.v1experimental.Function(this); result.id_ = id_; result.name_ = name_; result.systemName_ = systemName_; result.filename_ = filename_; result.startLine_ = startLine_; onBuilt(); return result; } @java.lang.Override public Builder clone() { return super.clone(); } @java.lang.Override public Builder setField( com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { return super.setField(field, value); } @java.lang.Override public Builder clearField( com.google.protobuf.Descriptors.FieldDescriptor field) { return super.clearField(field); } @java.lang.Override public Builder clearOneof( com.google.protobuf.Descriptors.OneofDescriptor oneof) { return super.clearOneof(oneof); } @java.lang.Override public Builder setRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { return super.setRepeatedField(field, index, value); } @java.lang.Override public Builder addRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { return super.addRepeatedField(field, value); } @java.lang.Override public Builder mergeFrom(com.google.protobuf.Message other) { if (other instanceof io.opentelemetry.proto.profiles.v1experimental.Function) { return mergeFrom((io.opentelemetry.proto.profiles.v1experimental.Function)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(io.opentelemetry.proto.profiles.v1experimental.Function other) { if (other == io.opentelemetry.proto.profiles.v1experimental.Function.getDefaultInstance()) return this; if (other.getId() != 0L) { setId(other.getId()); } if (other.getName() != 0L) { setName(other.getName()); } if (other.getSystemName() != 0L) { setSystemName(other.getSystemName()); } if (other.getFilename() != 0L) { setFilename(other.getFilename()); } if (other.getStartLine() != 0L) { setStartLine(other.getStartLine()); } 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 { io.opentelemetry.proto.profiles.v1experimental.Function parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { parsedMessage = (io.opentelemetry.proto.profiles.v1experimental.Function) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { mergeFrom(parsedMessage); } } return this; } private long id_ ; /** *
     * Unique nonzero id for the function. [deprecated]
     * 
* * uint64 id = 1; * @return The id. */ @java.lang.Override public long getId() { return id_; } /** *
     * Unique nonzero id for the function. [deprecated]
     * 
* * uint64 id = 1; * @param value The id to set. * @return This builder for chaining. */ public Builder setId(long value) { id_ = value; onChanged(); return this; } /** *
     * Unique nonzero id for the function. [deprecated]
     * 
* * uint64 id = 1; * @return This builder for chaining. */ public Builder clearId() { id_ = 0L; onChanged(); return this; } private long name_ ; /** *
     * Name of the function, in human-readable form if available.
     * 
* * int64 name = 2; * @return The name. */ @java.lang.Override public long getName() { return name_; } /** *
     * Name of the function, in human-readable form if available.
     * 
* * int64 name = 2; * @param value The name to set. * @return This builder for chaining. */ public Builder setName(long value) { name_ = value; onChanged(); return this; } /** *
     * Name of the function, in human-readable form if available.
     * 
* * int64 name = 2; * @return This builder for chaining. */ public Builder clearName() { name_ = 0L; onChanged(); return this; } private long systemName_ ; /** *
     * Name of the function, as identified by the system.
     * For instance, it can be a C++ mangled name.
     * 
* * int64 system_name = 3; * @return The systemName. */ @java.lang.Override public long getSystemName() { return systemName_; } /** *
     * Name of the function, as identified by the system.
     * For instance, it can be a C++ mangled name.
     * 
* * int64 system_name = 3; * @param value The systemName to set. * @return This builder for chaining. */ public Builder setSystemName(long value) { systemName_ = value; onChanged(); return this; } /** *
     * Name of the function, as identified by the system.
     * For instance, it can be a C++ mangled name.
     * 
* * int64 system_name = 3; * @return This builder for chaining. */ public Builder clearSystemName() { systemName_ = 0L; onChanged(); return this; } private long filename_ ; /** *
     * Source file containing the function.
     * 
* * int64 filename = 4; * @return The filename. */ @java.lang.Override public long getFilename() { return filename_; } /** *
     * Source file containing the function.
     * 
* * int64 filename = 4; * @param value The filename to set. * @return This builder for chaining. */ public Builder setFilename(long value) { filename_ = value; onChanged(); return this; } /** *
     * Source file containing the function.
     * 
* * int64 filename = 4; * @return This builder for chaining. */ public Builder clearFilename() { filename_ = 0L; onChanged(); return this; } private long startLine_ ; /** *
     * Line number in source file.
     * 
* * int64 start_line = 5; * @return The startLine. */ @java.lang.Override public long getStartLine() { return startLine_; } /** *
     * Line number in source file.
     * 
* * int64 start_line = 5; * @param value The startLine to set. * @return This builder for chaining. */ public Builder setStartLine(long value) { startLine_ = value; onChanged(); return this; } /** *
     * Line number in source file.
     * 
* * int64 start_line = 5; * @return This builder for chaining. */ public Builder clearStartLine() { startLine_ = 0L; onChanged(); return this; } @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { return super.setUnknownFields(unknownFields); } @java.lang.Override public final Builder mergeUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { return super.mergeUnknownFields(unknownFields); } // @@protoc_insertion_point(builder_scope:opentelemetry.proto.profiles.v1experimental.Function) } // @@protoc_insertion_point(class_scope:opentelemetry.proto.profiles.v1experimental.Function) private static final io.opentelemetry.proto.profiles.v1experimental.Function DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new io.opentelemetry.proto.profiles.v1experimental.Function(); } public static io.opentelemetry.proto.profiles.v1experimental.Function getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public Function parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return new Function(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 io.opentelemetry.proto.profiles.v1experimental.Function getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy