public enum StepDownFix extends Enum<StepDownFix>
Java class for StepDownFix.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="StepDownFix"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="unnamedInFinalApproachSegment"/> <enumeration value="unnamedInIntermediateApproachSegment"/> <enumeration value="named"/> </restriction> </simpleType>
Enum Constant and Description |
---|
NAMED |
UNNAMED_IN_FINAL_APPROACH_SEGMENT |
UNNAMED_IN_INTERMEDIATE_APPROACH_SEGMENT |
Modifier and Type | Method and Description |
---|---|
static StepDownFix |
fromValue(String v) |
String |
value() |
static StepDownFix |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StepDownFix[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StepDownFix UNNAMED_IN_FINAL_APPROACH_SEGMENT
public static final StepDownFix UNNAMED_IN_INTERMEDIATE_APPROACH_SEGMENT
public static final StepDownFix NAMED
public static StepDownFix[] values()
for (StepDownFix c : StepDownFix.values()) System.out.println(c);
public static StepDownFix 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 value()
public static StepDownFix fromValue(String v)
Copyright © 2017. All rights reserved.