Enum Class RemoteTerminalStatus
java.lang.Object
java.lang.Enum<RemoteTerminalStatus>
com.clover.remote.client.transport.usb.pos.RemoteTerminalStatus
- All Implemented Interfaces:
Serializable,Comparable<RemoteTerminalStatus>,Constable
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionRemote terminal is connected, but merchant mismatch, cannot perform transactionsRemote terminal is connected, but not ready to perform transactions at the momentRemote terminal is connected and ready to perform transactionsRemote terminal not connected -
Method Summary
Modifier and TypeMethodDescriptionstatic RemoteTerminalStatusReturns the enum constant of this class with the specified name.static RemoteTerminalStatus[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
TERMINAL_DISCONNECTED
Remote terminal not connected -
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_CONNECTED_MERCHANT_MISMATCH
Remote terminal is connected, but merchant mismatch, cannot perform transactions
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-