Enum MetadataType
Package com.here.sdk.core
Enum MetadataType
- java.lang.Object
-
- java.lang.Enum<MetadataType>
-
- com.here.sdk.core.MetadataType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<MetadataType>
public enum MetadataType extends java.lang.Enum<MetadataType>
Different types of objects that can be stored in a Metadata class instance.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CUSTOMCustomMetadataValue based object.DOUBLEDouble sized floating point value.GEO_COORDINATESGeoCoordinates object.INTEGERInteger.STRINGString object.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MetadataTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static MetadataType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CUSTOM
public static final MetadataType CUSTOM
CustomMetadataValue based object.
-
DOUBLE
public static final MetadataType DOUBLE
Double sized floating point value.
-
GEO_COORDINATES
public static final MetadataType GEO_COORDINATES
GeoCoordinates object.
-
INTEGER
public static final MetadataType INTEGER
Integer.
-
STRING
public static final MetadataType STRING
String object.
-
-
Method Detail
-
values
public static MetadataType[] 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 (MetadataType c : MetadataType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MetadataType 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
-
-