public static enum PosExchange.Progress extends java.lang.Enum<PosExchange.Progress>
| Enum Constant and Description |
|---|
CONNECTED
Установление соединения с терминалом выполнено
|
CONNECTING
Установление соединения с терминалом
|
DISCONNECTED
Разрыв соединения с терминалом выполнен
|
DISCONNECTING
Разрыв соединения с терминалом
|
RECEIVING
Приём данных от терминала
|
SENDING
Передача данных терминалу
|
| Modifier and Type | Method and Description |
|---|---|
static PosExchange.Progress |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PosExchange.Progress[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PosExchange.Progress CONNECTING
public static final PosExchange.Progress CONNECTED
public static final PosExchange.Progress DISCONNECTING
public static final PosExchange.Progress DISCONNECTED
public static final PosExchange.Progress SENDING
public static final PosExchange.Progress RECEIVING
public static PosExchange.Progress[] values()
for (PosExchange.Progress c : PosExchange.Progress.values()) System.out.println(c);
public static PosExchange.Progress 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