public enum Orientation extends Enum<Orientation>
OpenLR is a trade mark of TomTom International B.V.
email: software@openlr.org
| Enum Constant and Description |
|---|
AGAINST_LINE_DIRECTION
against line direction means from second LRP to first LRP
|
BOTH
in both directions
|
NO_ORIENTATION_OR_UNKNOWN
no orientation or unknown
|
WITH_LINE_DIRECTION
with line direction from first LRP to second LRP
|
| Modifier and Type | Method and Description |
|---|---|
static Orientation |
getDefault()
Gets the default.
|
static List<Orientation> |
getOrientationValues()
Gets the orientation values.
|
static Orientation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Orientation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Orientation NO_ORIENTATION_OR_UNKNOWN
public static final Orientation WITH_LINE_DIRECTION
public static final Orientation AGAINST_LINE_DIRECTION
public static final Orientation BOTH
public static Orientation[] values()
for (Orientation c : Orientation.values()) System.out.println(c);
public static Orientation 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<Orientation> getOrientationValues()
public static Orientation getDefault()
Copyright © 2019 TomTom International B.V.. All rights reserved.