Interface Telemetry.KeyValueOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Telemetry.KeyValue
,Telemetry.KeyValue.Builder
- Enclosing class:
- Telemetry
public static interface Telemetry.KeyValueOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
getBoolValue()
bool bool_value = 9;
com.google.protobuf.ByteString
getBytesValue()
bytes bytes_value = 11;
double
getDoubleValue()
double double_value = 5;
long
getIntValue()
int64 int_value = 6;
String
getKey()
Keycom.google.protobuf.ByteString
getKeyBytes()
Keylong
getSintValue()
sint64 sint_value = 8;
String
getStrValue()
string str_value = 10;
com.google.protobuf.ByteString
getStrValueBytes()
string str_value = 10;
long
getUintValue()
uint64 uint_value = 7;
Telemetry.KeyValue.ValueCase
getValueCase()
-
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()
Key
string key = 1;
-
getKeyBytes
com.google.protobuf.ByteString getKeyBytes()
Key
string key = 1;
-
getDoubleValue
double getDoubleValue()
double double_value = 5;
-
getIntValue
long getIntValue()
int64 int_value = 6;
-
getUintValue
long getUintValue()
uint64 uint_value = 7;
-
getSintValue
long getSintValue()
sint64 sint_value = 8;
-
getBoolValue
boolean getBoolValue()
bool bool_value = 9;
-
getStrValue
String getStrValue()
string str_value = 10;
-
getStrValueBytes
com.google.protobuf.ByteString getStrValueBytes()
string str_value = 10;
-
getBytesValue
com.google.protobuf.ByteString getBytesValue()
bytes bytes_value = 11;
-
getValueCase
Telemetry.KeyValue.ValueCase getValueCase()
-
-