public enum RemoteTerminalStatus extends java.lang.Enum<RemoteTerminalStatus>
| Enum Constant and Description |
|---|
TERMINAL_CONNECTED_MERCHANT_MISMATCH
Remote terminal is connected, but merchant mismatch, cannot perform transactions
|
TERMINAL_CONNECTED_NOT_READY
Remote terminal is connected, but not ready to perform transactions at the moment
|
TERMINAL_CONNECTED_READY
Remote terminal is connected and ready to perform transactions
|
TERMINAL_DISCONNECTED
Remote terminal not connected
|
| Modifier and Type | Method and Description |
|---|---|
static RemoteTerminalStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RemoteTerminalStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RemoteTerminalStatus TERMINAL_DISCONNECTED
public static final RemoteTerminalStatus TERMINAL_CONNECTED_NOT_READY
public static final RemoteTerminalStatus TERMINAL_CONNECTED_READY
public static final RemoteTerminalStatus TERMINAL_CONNECTED_MERCHANT_MISMATCH
public static RemoteTerminalStatus[] values()
for (RemoteTerminalStatus c : RemoteTerminalStatus.values()) System.out.println(c);
public static RemoteTerminalStatus 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