Package com.google.monitoring.v3
Interface LabelValueOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
LabelValue
,LabelValue.Builder
public interface LabelValueOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
getBoolValue()
A bool label value.long
getInt64Value()
An int64 label value.String
getStringValue()
A string label value.com.google.protobuf.ByteString
getStringValueBytes()
A string label value.LabelValue.ValueCase
getValueCase()
boolean
hasBoolValue()
A bool label value.boolean
hasInt64Value()
An int64 label value.boolean
hasStringValue()
A string label value.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasBoolValue
boolean hasBoolValue()
A bool label value.
bool bool_value = 1;
- Returns:
- Whether the boolValue field is set.
-
getBoolValue
boolean getBoolValue()
A bool label value.
bool bool_value = 1;
- Returns:
- The boolValue.
-
hasInt64Value
boolean hasInt64Value()
An int64 label value.
int64 int64_value = 2;
- Returns:
- Whether the int64Value field is set.
-
getInt64Value
long getInt64Value()
An int64 label value.
int64 int64_value = 2;
- Returns:
- The int64Value.
-
hasStringValue
boolean hasStringValue()
A string label value.
string string_value = 3;
- Returns:
- Whether the stringValue field is set.
-
getStringValue
String getStringValue()
A string label value.
string string_value = 3;
- Returns:
- The stringValue.
-
getStringValueBytes
com.google.protobuf.ByteString getStringValueBytes()
A string label value.
string string_value = 3;
- Returns:
- The bytes for stringValue.
-
getValueCase
LabelValue.ValueCase getValueCase()
-
-