public enum ParkingAreaType extends Enum<ParkingAreaType>
| Enum Constant and Description |
|---|
AIRPORT |
BUS |
CAR_PARK |
CUSTOMER_PARKING |
ON_STREET |
PARK_AND_RIDE |
PARKING_DECK_AUTOMATED |
PARKINGAREA |
PRIVATE |
PRIVATE_RESIDENTIAL |
SPECIAL |
TAXI |
TRUCK |
UNDERGROUND_PARKING |
UNDERGROUND_PARKING_AUTOMATED |
| Modifier and Type | Field and Description |
|---|---|
static List<ParkingAreaType> |
ALL_CAR_PARK_TYPES |
| Modifier and Type | Method and Description |
|---|---|
static ParkingAreaType |
getDefaultValue() |
static ParkingAreaType |
lookUpType(String type) |
static ParkingAreaType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ParkingAreaType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParkingAreaType CAR_PARK
public static final ParkingAreaType UNDERGROUND_PARKING
public static final ParkingAreaType AIRPORT
public static final ParkingAreaType PARKINGAREA
public static final ParkingAreaType ON_STREET
public static final ParkingAreaType SPECIAL
public static final ParkingAreaType PARK_AND_RIDE
public static final ParkingAreaType PARKING_DECK_AUTOMATED
public static final ParkingAreaType UNDERGROUND_PARKING_AUTOMATED
public static final ParkingAreaType CUSTOMER_PARKING
public static final ParkingAreaType PRIVATE
public static final ParkingAreaType TRUCK
public static final ParkingAreaType BUS
public static final ParkingAreaType TAXI
public static final ParkingAreaType PRIVATE_RESIDENTIAL
public static final List<ParkingAreaType> ALL_CAR_PARK_TYPES
public static ParkingAreaType[] values()
for (ParkingAreaType c : ParkingAreaType.values()) System.out.println(c);
public static ParkingAreaType 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 static ParkingAreaType lookUpType(String type)
public static ParkingAreaType getDefaultValue()
Copyright © 2019. All rights reserved.