Package io.opencensus.proto.trace.v1
Interface Span.Tracestate.EntryOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Span.Tracestate.Entry,Span.Tracestate.Entry.Builder
- Enclosing class:
- Span.Tracestate
public static interface Span.Tracestate.EntryOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetKey()The key must begin with a lowercase letter, and can only contain lowercase letters 'a'-'z', digits '0'-'9', underscores '_', dashes '-', asterisks '*', and forward slashes '/'.com.google.protobuf.ByteStringgetKeyBytes()The key must begin with a lowercase letter, and can only contain lowercase letters 'a'-'z', digits '0'-'9', underscores '_', dashes '-', asterisks '*', and forward slashes '/'.StringgetValue()The value is opaque string up to 256 characters printable ASCII RFC0020 characters (i.e., the range 0x20 to 0x7E) except ',' and '='.com.google.protobuf.ByteStringgetValueBytes()The value is opaque string up to 256 characters printable ASCII RFC0020 characters (i.e., the range 0x20 to 0x7E) except ',' and '='.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getKey
String getKey()
The key must begin with a lowercase letter, and can only contain lowercase letters 'a'-'z', digits '0'-'9', underscores '_', dashes '-', asterisks '*', and forward slashes '/'.
string key = 1;- Returns:
- The key.
-
getKeyBytes
com.google.protobuf.ByteString getKeyBytes()
The key must begin with a lowercase letter, and can only contain lowercase letters 'a'-'z', digits '0'-'9', underscores '_', dashes '-', asterisks '*', and forward slashes '/'.
string key = 1;- Returns:
- The bytes for key.
-
getValue
String getValue()
The value is opaque string up to 256 characters printable ASCII RFC0020 characters (i.e., the range 0x20 to 0x7E) except ',' and '='. Note that this also excludes tabs, newlines, carriage returns, etc.
string value = 2;- Returns:
- The value.
-
getValueBytes
com.google.protobuf.ByteString getValueBytes()
The value is opaque string up to 256 characters printable ASCII RFC0020 characters (i.e., the range 0x20 to 0x7E) except ',' and '='. Note that this also excludes tabs, newlines, carriage returns, etc.
string value = 2;- Returns:
- The bytes for value.
-
-