Enum DataAttributeValue.ValueType
Package com.here.sdk.mapview.datasource
Enum DataAttributeValue.ValueType
- java.lang.Object
-
- java.lang.Enum<DataAttributeValue.ValueType>
-
- com.here.sdk.mapview.datasource.DataAttributeValue.ValueType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<DataAttributeValue.ValueType>
- Enclosing class:
- DataAttributeValue
public static enum DataAttributeValue.ValueType extends java.lang.Enum<DataAttributeValue.ValueType>
Supported types of the data attribute values.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DataAttributeValue.ValueTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static DataAttributeValue.ValueType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STRING
public static final DataAttributeValue.ValueType STRING
Value of string type.
-
INT64
public static final DataAttributeValue.ValueType INT64
Value of 64-bit integer type.
-
FLOAT
public static final DataAttributeValue.ValueType FLOAT
Value of single precision float type.
-
DOUBLE
public static final DataAttributeValue.ValueType DOUBLE
Value of double precision float type.
-
BOOLEAN
public static final DataAttributeValue.ValueType BOOLEAN
Value of boolean type.
-
ARRAY
public static final DataAttributeValue.ValueType ARRAY
Value of array type.
-
-
Method Detail
-
values
public static DataAttributeValue.ValueType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (DataAttributeValue.ValueType c : DataAttributeValue.ValueType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DataAttributeValue.ValueType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-