public enum LocationType extends Enum<LocationType>
OpenLR is a trade mark of TomTom International B.V.
email: software@openlr.org
| Enum Constant and Description |
|---|
CIRCLE
circle area location
|
CLOSED_LINE
closed line area location
|
GEO_COORDINATES
simple geo coordinates
|
GRID
grid area location
|
LINE_LOCATION
line location.
|
POI_WITH_ACCESS_POINT
point of interest with an access point along a line
|
POINT_ALONG_LINE
point along a line
|
POLYGON
polygon area location
|
RECTANGLE
rectangular area location
|
UNKNOWN
Location is UNKNOWN.
|
| Modifier and Type | Field and Description |
|---|---|
static EnumSet<LocationType> |
AREA_LOCATIONS
The Constant AREA_LOCATIONS.
|
static EnumSet<LocationType> |
POINTS_LOCATIONS
The Constant POINTS_LOCATIONS.
|
| Modifier and Type | Method and Description |
|---|---|
static List<LocationType> |
getLocationTypes()
Gets the location types.
|
static LocationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LocationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LocationType UNKNOWN
public static final LocationType LINE_LOCATION
public static final LocationType GEO_COORDINATES
public static final LocationType POINT_ALONG_LINE
public static final LocationType POI_WITH_ACCESS_POINT
public static final LocationType CIRCLE
public static final LocationType POLYGON
public static final LocationType CLOSED_LINE
public static final LocationType RECTANGLE
public static final LocationType GRID
public static final EnumSet<LocationType> AREA_LOCATIONS
public static final EnumSet<LocationType> POINTS_LOCATIONS
public static LocationType[] values()
for (LocationType c : LocationType.values()) System.out.println(c);
public static LocationType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static List<LocationType> getLocationTypes()
Copyright © 2019 TomTom International B.V.. All rights reserved.