public enum ParkingAreaDataFilter extends Enum<ParkingAreaDataFilter>
| Enum Constant and Description |
|---|
CAR_PARK |
FREE |
MANUAL_CHECKED |
NOT_CAR_PARK |
NOT_CUSTOMER |
NOT_PRIVATE |
ONLY_PARKING_AREAS |
PARK_AND_RIDE |
| Modifier and Type | Field and Description |
|---|---|
static String |
ALLOWED_VALUES_LIST |
| Modifier and Type | Method and Description |
|---|---|
static ParkingAreaDataFilter |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ParkingAreaDataFilter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParkingAreaDataFilter FREE
public static final ParkingAreaDataFilter CAR_PARK
public static final ParkingAreaDataFilter NOT_CAR_PARK
public static final ParkingAreaDataFilter NOT_PRIVATE
public static final ParkingAreaDataFilter NOT_CUSTOMER
public static final ParkingAreaDataFilter ONLY_PARKING_AREAS
public static final ParkingAreaDataFilter PARK_AND_RIDE
public static final ParkingAreaDataFilter MANUAL_CHECKED
public static final String ALLOWED_VALUES_LIST
public static ParkingAreaDataFilter[] values()
for (ParkingAreaDataFilter c : ParkingAreaDataFilter.values()) System.out.println(c);
public static ParkingAreaDataFilter 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 © 2019. All rights reserved.