Package io.opencensus.proto.trace.v1
Interface ModuleOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Module,Module.Builder
public interface ModuleOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TruncatableStringgetBuildId()A unique identifier for the module, usually a hash of its contents.TruncatableStringOrBuildergetBuildIdOrBuilder()A unique identifier for the module, usually a hash of its contents.TruncatableStringgetModule()TODO: document the meaning of this field.TruncatableStringOrBuildergetModuleOrBuilder()TODO: document the meaning of this field.booleanhasBuildId()A unique identifier for the module, usually a hash of its contents.booleanhasModule()TODO: document the meaning of this field.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasModule
boolean hasModule()
TODO: document the meaning of this field. For example: main binary, kernel modules, and dynamic libraries such as libc.so, sharedlib.so.
.opencensus.proto.trace.v1.TruncatableString module = 1;- Returns:
- Whether the module field is set.
-
getModule
TruncatableString getModule()
TODO: document the meaning of this field. For example: main binary, kernel modules, and dynamic libraries such as libc.so, sharedlib.so.
.opencensus.proto.trace.v1.TruncatableString module = 1;- Returns:
- The module.
-
getModuleOrBuilder
TruncatableStringOrBuilder getModuleOrBuilder()
TODO: document the meaning of this field. For example: main binary, kernel modules, and dynamic libraries such as libc.so, sharedlib.so.
.opencensus.proto.trace.v1.TruncatableString module = 1;
-
hasBuildId
boolean hasBuildId()
A unique identifier for the module, usually a hash of its contents.
.opencensus.proto.trace.v1.TruncatableString build_id = 2;- Returns:
- Whether the buildId field is set.
-
getBuildId
TruncatableString getBuildId()
A unique identifier for the module, usually a hash of its contents.
.opencensus.proto.trace.v1.TruncatableString build_id = 2;- Returns:
- The buildId.
-
getBuildIdOrBuilder
TruncatableStringOrBuilder getBuildIdOrBuilder()
A unique identifier for the module, usually a hash of its contents.
.opencensus.proto.trace.v1.TruncatableString build_id = 2;
-
-