Package com.google.cloud.vision.v1
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 StringgetName()Name of the property.com.google.protobuf.ByteStringgetNameBytes()Name of the property.longgetUint64Value()Value of numeric properties.StringgetValue()Value of the property.com.google.protobuf.ByteStringgetValueBytes()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.
-
-