Interface PropertyOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Property
,Property.Builder
public interface PropertyOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getName()
Name of the property.com.google.protobuf.ByteString
getNameBytes()
Name of the property.long
getUint64Value()
Value of numeric properties.String
getValue()
Value of the property.com.google.protobuf.ByteString
getValueBytes()
Value of the property.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getName
String getName()
Name of the property.
string name = 1;
- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
Name of the property.
string name = 1;
- Returns:
- The bytes for name.
-
getValue
String getValue()
Value of the property.
string value = 2;
- Returns:
- The value.
-
getValueBytes
com.google.protobuf.ByteString getValueBytes()
Value of the property.
string value = 2;
- Returns:
- The bytes for value.
-
getUint64Value
long getUint64Value()
Value of numeric properties.
uint64 uint64_value = 3;
- Returns:
- The uint64Value.
-
-