public static enum PosExchange.LogMode extends java.lang.Enum<PosExchange.LogMode>
| Enum Constant and Description |
|---|
ADVANCED
(2) Вывод в лог расширенной информации (логирование набора полей и т.п.)
|
DEBUG
(3) Вывод в лог отладочной информации
|
DISABLED
(0) Лог не используется
|
ERROR
(1) Вывод в лог только ошибок
|
| Modifier and Type | Method and Description |
|---|---|
int |
getValue()
Получить целочисленное значение
|
static PosExchange.LogMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PosExchange.LogMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PosExchange.LogMode DISABLED
public static final PosExchange.LogMode ERROR
public static final PosExchange.LogMode ADVANCED
public static final PosExchange.LogMode DEBUG
public static PosExchange.LogMode[] values()
for (PosExchange.LogMode c : PosExchange.LogMode.values()) System.out.println(c);
public static PosExchange.LogMode 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 int getValue()