Interface ValueOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Value
,Value.Builder
public interface ValueOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptioncom.google.protobuf.ByteString
bytes binary_value = 8;
boolean
bool bool_value = 2;
.ignition.rpc.Value.ValueCollection collection_value = 9;
.ignition.rpc.Value.ValueCollection collection_value = 9;
double
double double_value = 6;
float
float float_value = 5;
An associated identifier that will be used to pick up custom deserialization logic on the receiving side.com.google.protobuf.ByteString
An associated identifier that will be used to pick up custom deserialization logic on the receiving side.int
sint32 int_value = 3;
long
sint64 long_value = 4;
string string_value = 7;
com.google.protobuf.ByteString
string string_value = 7;
boolean
bytes binary_value = 8;
boolean
bool bool_value = 2;
boolean
.ignition.rpc.Value.ValueCollection collection_value = 9;
boolean
double double_value = 6;
boolean
float float_value = 5;
boolean
An associated identifier that will be used to pick up custom deserialization logic on the receiving side.boolean
sint32 int_value = 3;
boolean
sint64 long_value = 4;
boolean
string string_value = 7;
Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
isInitialized
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
Method Details
-
hasIdentifier
boolean hasIdentifier()An associated identifier that will be used to pick up custom deserialization logic on the receiving side. If no identifier is supplied, the value is decoded as whatever underlying Java type.
optional string identifier = 1;
- Returns:
- Whether the identifier field is set.
-
getIdentifier
String getIdentifier()An associated identifier that will be used to pick up custom deserialization logic on the receiving side. If no identifier is supplied, the value is decoded as whatever underlying Java type.
optional string identifier = 1;
- Returns:
- The identifier.
-
getIdentifierBytes
com.google.protobuf.ByteString getIdentifierBytes()An associated identifier that will be used to pick up custom deserialization logic on the receiving side. If no identifier is supplied, the value is decoded as whatever underlying Java type.
optional string identifier = 1;
- Returns:
- The bytes for identifier.
-
hasBoolValue
boolean hasBoolValue()bool bool_value = 2;
- Returns:
- Whether the boolValue field is set.
-
getBoolValue
boolean getBoolValue()bool bool_value = 2;
- Returns:
- The boolValue.
-
hasIntValue
boolean hasIntValue()sint32 int_value = 3;
- Returns:
- Whether the intValue field is set.
-
getIntValue
int getIntValue()sint32 int_value = 3;
- Returns:
- The intValue.
-
hasLongValue
boolean hasLongValue()sint64 long_value = 4;
- Returns:
- Whether the longValue field is set.
-
getLongValue
long getLongValue()sint64 long_value = 4;
- Returns:
- The longValue.
-
hasFloatValue
boolean hasFloatValue()float float_value = 5;
- Returns:
- Whether the floatValue field is set.
-
getFloatValue
float getFloatValue()float float_value = 5;
- Returns:
- The floatValue.
-
hasDoubleValue
boolean hasDoubleValue()double double_value = 6;
- Returns:
- Whether the doubleValue field is set.
-
getDoubleValue
double getDoubleValue()double double_value = 6;
- Returns:
- The doubleValue.
-
hasStringValue
boolean hasStringValue()string string_value = 7;
- Returns:
- Whether the stringValue field is set.
-
getStringValue
String getStringValue()string string_value = 7;
- Returns:
- The stringValue.
-
getStringValueBytes
com.google.protobuf.ByteString getStringValueBytes()string string_value = 7;
- Returns:
- The bytes for stringValue.
-
hasBinaryValue
boolean hasBinaryValue()bytes binary_value = 8;
- Returns:
- Whether the binaryValue field is set.
-
getBinaryValue
com.google.protobuf.ByteString getBinaryValue()bytes binary_value = 8;
- Returns:
- The binaryValue.
-
hasCollectionValue
boolean hasCollectionValue().ignition.rpc.Value.ValueCollection collection_value = 9;
- Returns:
- Whether the collectionValue field is set.
-
getCollectionValue
Value.ValueCollection getCollectionValue().ignition.rpc.Value.ValueCollection collection_value = 9;
- Returns:
- The collectionValue.
-
getCollectionValueOrBuilder
Value.ValueCollectionOrBuilder getCollectionValueOrBuilder().ignition.rpc.Value.ValueCollection collection_value = 9;
-
getValueCase
Value.ValueCase getValueCase()
-