public interface CloudExportAdditionalPropertiesOrBuilder extends MessageOrBuilder
Implements
MessageOrBuilderMethods
getBoolValue()
public abstract boolean getBoolValue()
Boolean value of the given property. For example for a TV product, "True" or "False" if the screen is UHD.
optional bool bool_value = 3;
Returns | |
---|---|
Type | Description |
boolean |
The boolValue. |
getFloatValue(int index)
public abstract float getFloatValue(int index)
Float values of the given property. For example for a TV product 1.2345. Maximum repeatedness of this value is 400. Values are stored in an arbitrary but consistent order.
repeated float float_value = 5;
Parameter | |
---|---|
Name | Description |
index |
int The index of the element to return. |
Returns | |
---|---|
Type | Description |
float |
The floatValue at the given index. |
getFloatValueCount()
public abstract int getFloatValueCount()
Float values of the given property. For example for a TV product 1.2345. Maximum repeatedness of this value is 400. Values are stored in an arbitrary but consistent order.
repeated float float_value = 5;
Returns | |
---|---|
Type | Description |
int |
The count of floatValue. |
getFloatValueList()
public abstract List<Float> getFloatValueList()
Float values of the given property. For example for a TV product 1.2345. Maximum repeatedness of this value is 400. Values are stored in an arbitrary but consistent order.
repeated float float_value = 5;
Returns | |
---|---|
Type | Description |
List<Float> |
A list containing the floatValue. |
getIntValue(int index)
public abstract long getIntValue(int index)
Integer values of the given property. For example, 1080 for a TV product's Screen Resolution. Maximum repeatedness of this value is 400. Values are stored in an arbitrary but consistent order.
repeated int64 int_value = 4;
Parameter | |
---|---|
Name | Description |
index |
int The index of the element to return. |
Returns | |
---|---|
Type | Description |
long |
The intValue at the given index. |
getIntValueCount()
public abstract int getIntValueCount()
Integer values of the given property. For example, 1080 for a TV product's Screen Resolution. Maximum repeatedness of this value is 400. Values are stored in an arbitrary but consistent order.
repeated int64 int_value = 4;
Returns | |
---|---|
Type | Description |
int |
The count of intValue. |
getIntValueList()
public abstract List<Long> getIntValueList()
Integer values of the given property. For example, 1080 for a TV product's Screen Resolution. Maximum repeatedness of this value is 400. Values are stored in an arbitrary but consistent order.
repeated int64 int_value = 4;
Returns | |
---|---|
Type | Description |
List<Long> |
A list containing the intValue. |
getMaxValue()
public abstract float getMaxValue()
Maximum float value of the given property. For example for a TV product 100.00.
optional float max_value = 7;
Returns | |
---|---|
Type | Description |
float |
The maxValue. |
getMinValue()
public abstract float getMinValue()
Minimum float value of the given property. For example for a TV product 1.00.
optional float min_value = 6;
Returns | |
---|---|
Type | Description |
float |
The minValue. |
getPropertyName()
public abstract String getPropertyName()
Name of the given property. For example, "Screen-Resolution" for a TV product. Maximum string size is 256 characters.
optional string property_name = 1;
Returns | |
---|---|
Type | Description |
String |
The propertyName. |
getPropertyNameBytes()
public abstract ByteString getPropertyNameBytes()
Name of the given property. For example, "Screen-Resolution" for a TV product. Maximum string size is 256 characters.
optional string property_name = 1;
Returns | |
---|---|
Type | Description |
ByteString |
The bytes for propertyName. |
getTextValue(int index)
public abstract String getTextValue(int index)
Text value of the given property. For example, "8K(UHD)" could be a text value for a TV product. Maximum repeatedness of this value is 400. Values are stored in an arbitrary but consistent order. Maximum string size is 256 characters.
repeated string text_value = 2;
Parameter | |
---|---|
Name | Description |
index |
int The index of the element to return. |
Returns | |
---|---|
Type | Description |
String |
The textValue at the given index. |
getTextValueBytes(int index)
public abstract ByteString getTextValueBytes(int index)
Text value of the given property. For example, "8K(UHD)" could be a text value for a TV product. Maximum repeatedness of this value is 400. Values are stored in an arbitrary but consistent order. Maximum string size is 256 characters.
repeated string text_value = 2;
Parameter | |
---|---|
Name | Description |
index |
int The index of the value to return. |
Returns | |
---|---|
Type | Description |
ByteString |
The bytes of the textValue at the given index. |
getTextValueCount()
public abstract int getTextValueCount()
Text value of the given property. For example, "8K(UHD)" could be a text value for a TV product. Maximum repeatedness of this value is 400. Values are stored in an arbitrary but consistent order. Maximum string size is 256 characters.
repeated string text_value = 2;
Returns | |
---|---|
Type | Description |
int |
The count of textValue. |
getTextValueList()
public abstract List<String> getTextValueList()
Text value of the given property. For example, "8K(UHD)" could be a text value for a TV product. Maximum repeatedness of this value is 400. Values are stored in an arbitrary but consistent order. Maximum string size is 256 characters.
repeated string text_value = 2;
Returns | |
---|---|
Type | Description |
List<String> |
A list containing the textValue. |
getUnitCode()
public abstract String getUnitCode()
Unit of the given property. For example, "Pixels" for a TV product. Maximum string size is 256B.
optional string unit_code = 8;
Returns | |
---|---|
Type | Description |
String |
The unitCode. |
getUnitCodeBytes()
public abstract ByteString getUnitCodeBytes()
Unit of the given property. For example, "Pixels" for a TV product. Maximum string size is 256B.
optional string unit_code = 8;
Returns | |
---|---|
Type | Description |
ByteString |
The bytes for unitCode. |
hasBoolValue()
public abstract boolean hasBoolValue()
Boolean value of the given property. For example for a TV product, "True" or "False" if the screen is UHD.
optional bool bool_value = 3;
Returns | |
---|---|
Type | Description |
boolean |
Whether the boolValue field is set. |
hasMaxValue()
public abstract boolean hasMaxValue()
Maximum float value of the given property. For example for a TV product 100.00.
optional float max_value = 7;
Returns | |
---|---|
Type | Description |
boolean |
Whether the maxValue field is set. |
hasMinValue()
public abstract boolean hasMinValue()
Minimum float value of the given property. For example for a TV product 1.00.
optional float min_value = 6;
Returns | |
---|---|
Type | Description |
boolean |
Whether the minValue field is set. |
hasPropertyName()
public abstract boolean hasPropertyName()
Name of the given property. For example, "Screen-Resolution" for a TV product. Maximum string size is 256 characters.
optional string property_name = 1;
Returns | |
---|---|
Type | Description |
boolean |
Whether the propertyName field is set. |
hasUnitCode()
public abstract boolean hasUnitCode()
Unit of the given property. For example, "Pixels" for a TV product. Maximum string size is 256B.
optional string unit_code = 8;
Returns | |
---|---|
Type | Description |
boolean |
Whether the unitCode field is set. |