public enum PayloadType extends Enum<PayloadType>
| Enum Constant and Description |
|---|
AIRLINE_BOARDINGPASS
The airline boardingpass.
|
AIRLINE_CHECKIN
The airline checkin.
|
AIRLINE_ITINERARY
The airline itinerary.
|
AIRLINE_UPDATE
The airline update.
|
BUTTON
The button.
|
GENERIC
The generic.
|
LIST
The list.
|
RECEIPT
The receipt.
|
| Modifier and Type | Method and Description |
|---|---|
static PayloadType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PayloadType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PayloadType BUTTON
public static final PayloadType GENERIC
public static final PayloadType LIST
public static final PayloadType RECEIPT
public static final PayloadType AIRLINE_ITINERARY
public static final PayloadType AIRLINE_BOARDINGPASS
public static final PayloadType AIRLINE_UPDATE
public static final PayloadType AIRLINE_CHECKIN
public static PayloadType[] values()
for (PayloadType c : PayloadType.values()) System.out.println(c);
public static PayloadType 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 © 2017 BotMill. All rights reserved.