public enum ManeuverIndicator extends Enum<ManeuverIndicator>
| Enum Constant and Description |
|---|
NoSpecialManeuver
No special maneuver
|
NotAvailableDefault
Not available (default)
|
SpecialManeuverSuchAsRegionalPassingArrangement
Special maneuver (such as regional passing arrangement)
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static ManeuverIndicator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ManeuverIndicator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ManeuverIndicator NotAvailableDefault
public static final ManeuverIndicator NoSpecialManeuver
public static final ManeuverIndicator SpecialManeuverSuchAsRegionalPassingArrangement
public static ManeuverIndicator[] values()
for (ManeuverIndicator c : ManeuverIndicator.values()) System.out.println(c);
public static ManeuverIndicator 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 String toString()
toString in class Enum<ManeuverIndicator>Copyright © 2015. All rights reserved.