Interface Parameter.ValueOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Parameter.Value
,Parameter.Value.Builder
- Enclosing class:
- Parameter
public static interface Parameter.ValueOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description double
getDoubleValue()
Represents a double value.long
getInt64Value()
Represents an int64 value.Parameter.Value.KindCase
getKindCase()
String
getStringValue()
Represents a string value.com.google.protobuf.ByteString
getStringValueBytes()
Represents a string value.boolean
hasDoubleValue()
Represents a double value.boolean
hasInt64Value()
Represents an int64 value.boolean
hasStringValue()
Represents a string value.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasInt64Value
boolean hasInt64Value()
Represents an int64 value.
int64 int64_value = 3;
- Returns:
- Whether the int64Value field is set.
-
getInt64Value
long getInt64Value()
Represents an int64 value.
int64 int64_value = 3;
- Returns:
- The int64Value.
-
hasStringValue
boolean hasStringValue()
Represents a string value.
string string_value = 4;
- Returns:
- Whether the stringValue field is set.
-
getStringValue
String getStringValue()
Represents a string value.
string string_value = 4;
- Returns:
- The stringValue.
-
getStringValueBytes
com.google.protobuf.ByteString getStringValueBytes()
Represents a string value.
string string_value = 4;
- Returns:
- The bytes for stringValue.
-
hasDoubleValue
boolean hasDoubleValue()
Represents a double value.
double double_value = 5;
- Returns:
- Whether the doubleValue field is set.
-
getDoubleValue
double getDoubleValue()
Represents a double value.
double double_value = 5;
- Returns:
- The doubleValue.
-
getKindCase
Parameter.Value.KindCase getKindCase()
-
-