DataAttributeValue.ValueType (API Reference)
Package com.here.sdk.mapview.datasource
Enum Class DataAttributeValue.ValueType
java.lang.Object
java.lang.Enum<DataAttributeValue.ValueType>
com.here.sdk.mapview.datasource.DataAttributeValue.ValueType
- All Implemented Interfaces:
Serializable,Comparable<DataAttributeValue.ValueType>,Constable
- Enclosing class:
- DataAttributeValue
Supported types of the data attribute values.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic DataAttributeValue.ValueTypeReturns the enum constant of this class with the specified name.static DataAttributeValue.ValueType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
STRING
Value of string type.
-
INT64
Value of 64-bit integer type.
-
FLOAT
Value of single precision float type.
-
DOUBLE
Value of double precision float type.
-
BOOLEAN
Value of boolean type.
-
ARRAY
Value of array type.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-