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="StepUpDownPermitted"/>
<enumeration value="StepDownPermitted"/>
<enumeration value="NoStepPermitted"/>
<enumeration value="OnlyStepUpPermitted"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
NO_STEP_PERMITTED
No step climb is permitted
|
ONLY_STEP_UP_PERMITTED
Only step climb up is permitted
|
STEP_DOWN_PERMITTED
Only step climb down is permitted
|
STEP_UP_DOWN_PERMITTED
Step climb up or down 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 STEP_UP_DOWN_PERMITTED
public static final StepClimbIndicator STEP_DOWN_PERMITTED
public static final StepClimbIndicator NO_STEP_PERMITTED
public static final StepClimbIndicator ONLY_STEP_UP_PERMITTED
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 © 2020. All rights reserved.