Interface Span.TimeEvent.AnnotationOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Span.TimeEvent.Annotation
,Span.TimeEvent.Annotation.Builder
- Enclosing class:
- Span.TimeEvent
public static interface Span.TimeEvent.AnnotationOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Span.Attributes
getAttributes()
A set of attributes on the annotation.Span.AttributesOrBuilder
getAttributesOrBuilder()
A set of attributes on the annotation.TruncatableString
getDescription()
A user-supplied message describing the event.TruncatableStringOrBuilder
getDescriptionOrBuilder()
A user-supplied message describing the event.boolean
hasAttributes()
A set of attributes on the annotation.boolean
hasDescription()
A user-supplied message describing the event.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasDescription
boolean hasDescription()
A user-supplied message describing the event. The maximum length for the description is 256 bytes.
.google.devtools.cloudtrace.v2.TruncatableString description = 1;
- Returns:
- Whether the description field is set.
-
getDescription
TruncatableString getDescription()
A user-supplied message describing the event. The maximum length for the description is 256 bytes.
.google.devtools.cloudtrace.v2.TruncatableString description = 1;
- Returns:
- The description.
-
getDescriptionOrBuilder
TruncatableStringOrBuilder getDescriptionOrBuilder()
A user-supplied message describing the event. The maximum length for the description is 256 bytes.
.google.devtools.cloudtrace.v2.TruncatableString description = 1;
-
hasAttributes
boolean hasAttributes()
A set of attributes on the annotation. You can have up to 4 attributes per Annotation.
.google.devtools.cloudtrace.v2.Span.Attributes attributes = 2;
- Returns:
- Whether the attributes field is set.
-
getAttributes
Span.Attributes getAttributes()
A set of attributes on the annotation. You can have up to 4 attributes per Annotation.
.google.devtools.cloudtrace.v2.Span.Attributes attributes = 2;
- Returns:
- The attributes.
-
getAttributesOrBuilder
Span.AttributesOrBuilder getAttributesOrBuilder()
A set of attributes on the annotation. You can have up to 4 attributes per Annotation.
.google.devtools.cloudtrace.v2.Span.Attributes attributes = 2;
-
-