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