public static enum Constants.AccessibilityRestriction extends Enum<Constants.AccessibilityRestriction>
| Enum Constant and Description |
|---|
NO_ELEVATOR |
NO_ESCALATOR |
NO_STAIRS |
ONLY_LOW_FLOOR_VEHICLE |
| Modifier and Type | Method and Description |
|---|---|
static Constants.AccessibilityRestriction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Constants.AccessibilityRestriction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Constants.AccessibilityRestriction NO_STAIRS
public static final Constants.AccessibilityRestriction NO_ESCALATOR
public static final Constants.AccessibilityRestriction NO_ELEVATOR
public static final Constants.AccessibilityRestriction ONLY_LOW_FLOOR_VEHICLE
public static Constants.AccessibilityRestriction[] values()
for (Constants.AccessibilityRestriction c : Constants.AccessibilityRestriction.values()) System.out.println(c);
public static Constants.AccessibilityRestriction 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.