public enum ProcessingDisposition extends Enum<ProcessingDisposition>
Defines if the ECR or EFT is responsible for further trx handling.
The following values are valid:
Specification: petrol.
Enum Constant and Description |
---|
ON_ECR
The ECR is responsible for further trx handling.
|
ON_EFT
The EFT is responsible for further trx handling.
|
Modifier and Type | Method and Description |
---|---|
static ProcessingDisposition |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProcessingDisposition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProcessingDisposition ON_ECR
The ECR is responsible for further trx handling.
Specification: petrol.
public static final ProcessingDisposition ON_EFT
The EFT is responsible for further trx handling.
Specification: petrol.
public static ProcessingDisposition[] values()
for (ProcessingDisposition c : ProcessingDisposition.values()) System.out.println(c);
public static ProcessingDisposition 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