Enum Constant and Description |
---|
BONUS
Deprecated.
тип считается устаревшим и не рекомендуется к использованию. Используйте
EXTERNAL |
COUPON
Купон
|
EXTERNAL
Внешняя карта: дисконтная карта внешней [по отношению к SET10] системы лояльности
|
GIFT
Подарочная карта
|
INTERNAL
Внутренняя (дисконтная) карта: карта, заведенная в системе SET10
|
MULTI_PROCESSING
Внешняя карта, данные для формирования которой могут быть получены из нескольких систем/процессингов/плагинов
(на данный момент максимум 2х).
|
Modifier and Type | Method and Description |
---|---|
static CardType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CardType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CardType INTERNAL
public static final CardType EXTERNAL
public static final CardType MULTI_PROCESSING
public static final CardType GIFT
@Deprecated public static final CardType BONUS
EXTERNAL
public static final CardType COUPON
public static CardType[] values()
for (CardType c : CardType.values()) System.out.println(c);
public static CardType 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