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