public enum PointOfInitiationMethod extends java.lang.Enum<PointOfInitiationMethod>
Enum Constant and Description |
---|
DYNAMIC
The Point of Initiation Method value of "12" is used when a new QR Code is shown for each transaction - i.e.
|
STATIC
The Point of Initiation Method value of "11" is used when the same QR Code is shown for more than one transaction - i.e.
|
UNDEFINED
Data object not present in the QR code.
|
Modifier and Type | Method and Description |
---|---|
static PointOfInitiationMethod |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PointOfInitiationMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PointOfInitiationMethod UNDEFINED
public static final PointOfInitiationMethod STATIC
public static final PointOfInitiationMethod DYNAMIC
public static PointOfInitiationMethod[] values()
for (PointOfInitiationMethod c : PointOfInitiationMethod.values()) System.out.println(c);
public static PointOfInitiationMethod 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 null