public enum AccommodationType extends java.lang.Enum<AccommodationType> implements LineItemTypeDescription
| Enum Constant and Description |
|---|
Apartment |
BedAndBreakfast |
CommercialRental |
Guesthouse |
Hostel |
Hotel |
Motel |
PrivateRental |
Standard |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
code() |
java.lang.String |
description() |
static AccommodationType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AccommodationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccommodationType Standard
public static final AccommodationType Hotel
public static final AccommodationType Hostel
public static final AccommodationType Motel
public static final AccommodationType BedAndBreakfast
public static final AccommodationType Guesthouse
public static final AccommodationType Apartment
public static final AccommodationType CommercialRental
public static final AccommodationType PrivateRental
public static AccommodationType[] values()
for (AccommodationType c : AccommodationType.values()) System.out.println(c);
public static AccommodationType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String code()
code in interface LineItemTypeDescriptionpublic java.lang.String description()
description in interface LineItemTypeDescription