Enum LocationTechnology
Package com.here.sdk.core
Enum LocationTechnology
- java.lang.Object
-
- java.lang.Enum<LocationTechnology>
-
- com.here.sdk.core.LocationTechnology
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<LocationTechnology>
public enum LocationTechnology extends java.lang.Enum<LocationTechnology>
Technology or provider of the location.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CELLULARCellular network positioning.DEAD_RECKONINGDead reckoning positioning.GNSSGNSS positioning.HD_GNSSHD GNSS positioning.WIFIWiFi network positioning.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static LocationTechnologyvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static LocationTechnology[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CELLULAR
public static final LocationTechnology CELLULAR
Cellular network positioning.
-
GNSS
public static final LocationTechnology GNSS
GNSS positioning.
-
HD_GNSS
public static final LocationTechnology HD_GNSS
HD GNSS positioning.
-
WIFI
public static final LocationTechnology WIFI
WiFi network positioning.
-
DEAD_RECKONING
public static final LocationTechnology DEAD_RECKONING
Dead reckoning positioning.
-
-
Method Detail
-
values
public static LocationTechnology[] 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 (LocationTechnology c : LocationTechnology.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LocationTechnology 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
-
-