Interface CustomDataValueOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CustomDataValue,CustomDataValue.Builder
public interface CustomDataValueOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleangetBoolValue()bool boolValue = 2;doublegetDoubleValue()double doubleValue = 3;java.lang.StringgetStringValue()string stringValue = 4;com.google.protobuf.ByteStringgetStringValueBytes()string stringValue = 4;CustomDataTypegetType().CustomDataType type = 1;intgetTypeValue().CustomDataType type = 1;-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getTypeValue
int getTypeValue()
.CustomDataType type = 1;- Returns:
- The enum numeric value on the wire for type.
-
getType
CustomDataType getType()
.CustomDataType type = 1;- Returns:
- The type.
-
getBoolValue
boolean getBoolValue()
bool boolValue = 2;- Returns:
- The boolValue.
-
getDoubleValue
double getDoubleValue()
double doubleValue = 3;- Returns:
- The doubleValue.
-
getStringValue
java.lang.String getStringValue()
string stringValue = 4;- Returns:
- The stringValue.
-
getStringValueBytes
com.google.protobuf.ByteString getStringValueBytes()
string stringValue = 4;- Returns:
- The bytes for stringValue.
-
-