public enum FunctionResultType extends java.lang.Enum<FunctionResultType>
Enum Constant and Description |
---|
CREATE_RECEIPT
Результат для формирования чека
|
CREATE_WITHDRAWAL
Результат для формирования изъятия
|
SEARCH_CARD
Результат поиска карты
|
SEARCH_PRODUCT
Результат поиска товара
|
VOID
Пустой результат
|
Modifier and Type | Method and Description |
---|---|
static FunctionResultType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FunctionResultType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FunctionResultType VOID
public static final FunctionResultType SEARCH_PRODUCT
public static final FunctionResultType CREATE_RECEIPT
public static final FunctionResultType SEARCH_CARD
public static final FunctionResultType CREATE_WITHDRAWAL
public static FunctionResultType[] values()
for (FunctionResultType c : FunctionResultType.values()) System.out.println(c);
public static FunctionResultType 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