public enum TravelIncidentalType extends java.lang.Enum<TravelIncidentalType> implements LineItemTypeDescription
| Enum Constant and Description |
|---|
Accommodation |
Fuel |
Parking |
RoadTolls |
Standard |
VisaAndAdministration |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
code() |
java.lang.String |
description() |
static TravelIncidentalType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TravelIncidentalType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TravelIncidentalType Standard
public static final TravelIncidentalType Accommodation
public static final TravelIncidentalType Parking
public static final TravelIncidentalType RoadTolls
public static final TravelIncidentalType Fuel
public static final TravelIncidentalType VisaAndAdministration
public static TravelIncidentalType[] values()
for (TravelIncidentalType c : TravelIncidentalType.values()) System.out.println(c);
public static TravelIncidentalType 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