public static enum Constants.Accessibility extends Enum<Constants.Accessibility>
| Enum Constant and Description |
|---|
ELEVATOR_DOWN |
ELEVATOR_UP |
ESCALATOR_DOWN |
ESCALATOR_UP |
STAIRS_DOWN |
STAIRS_UP |
| Modifier and Type | Method and Description |
|---|---|
static Constants.Accessibility |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Constants.Accessibility[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Constants.Accessibility STAIRS_DOWN
public static final Constants.Accessibility STAIRS_UP
public static final Constants.Accessibility ESCALATOR_DOWN
public static final Constants.Accessibility ESCALATOR_UP
public static final Constants.Accessibility ELEVATOR_DOWN
public static final Constants.Accessibility ELEVATOR_UP
public static Constants.Accessibility[] values()
for (Constants.Accessibility c : Constants.Accessibility.values()) System.out.println(c);
public static Constants.Accessibility 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 nullCopyright © 2018. All rights reserved.