public enum AuthorisingEntity extends java.lang.Enum<AuthorisingEntity>
Enum Constant and Description |
---|
ACQUIRER
The transaction was authorised by the merchants acquirer.
|
DPC0 |
DPC3 |
DPC4 |
INTERCHANGE_INTERFACE |
INTERCHANGE_VISA_EPSS |
ISSUER
The transaction was authorised by the card issuer.
|
LOCAL
The transaction was authorised by the payment terminal.
|
MANUAL
The transaction was authorised with a manually entered approval code.
|
NONE
The transaction is not authorised.
|
Modifier and Type | Method and Description |
---|---|
char |
getCharacter() |
static AuthorisingEntity |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AuthorisingEntity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuthorisingEntity NONE
public static final AuthorisingEntity DPC0
public static final AuthorisingEntity LOCAL
public static final AuthorisingEntity DPC3
public static final AuthorisingEntity DPC4
public static final AuthorisingEntity ISSUER
public static final AuthorisingEntity INTERCHANGE_INTERFACE
public static final AuthorisingEntity INTERCHANGE_VISA_EPSS
public static final AuthorisingEntity ACQUIRER
public static final AuthorisingEntity MANUAL
public static AuthorisingEntity[] values()
for (AuthorisingEntity c : AuthorisingEntity.values()) System.out.println(c);
public static AuthorisingEntity 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 char getCharacter()