public enum MerchantAction extends Enum<MerchantAction>
Constants for MerchantAction tag.
Specification: retail.
Enum Constant and Description |
---|
NONE
No merchant action is required.
|
SIGNATURE
The merchant has to sign the receipt.
|
Modifier and Type | Method and Description |
---|---|
static MerchantAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MerchantAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MerchantAction SIGNATURE
The merchant has to sign the receipt.
Specification: retail.
public static final MerchantAction NONE
No merchant action is required.
Specification: retail.
public static MerchantAction[] values()
for (MerchantAction c : MerchantAction.values()) System.out.println(c);
public static MerchantAction 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 null