public enum PaymentObject extends java.lang.Enum<PaymentObject>
| Enum Constant and Description |
|---|
AGENT_COMMISSION
Агентское вознаграждение
|
ANOTHER
Иной предмет расчета
|
COMPOSITE
Составной предмет расчета
|
EXCISE
Подакцизный товар
|
GAMBLING_BET
Ставка азартной игры
|
GAMBLING_PRIZE
Выигрыш азартной игры
|
INTELLECTUAL_ACTIVITY
Предоставление результатов интеллектуальной деятельности
|
JOB
Работа
|
LOTTERY
Лотерейный билет
|
LOTTERY_PRIZE
Выигрыш лотереи
|
PAYMENT
Платеж
|
SERVICE
Услуга
|
| Modifier and Type | Method and Description |
|---|---|
static PaymentObject |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PaymentObject[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="excise") public static final PaymentObject EXCISE
@SerializedName(value="job") public static final PaymentObject JOB
@SerializedName(value="service") public static final PaymentObject SERVICE
@SerializedName(value="gambling_bet") public static final PaymentObject GAMBLING_BET
@SerializedName(value="gambling_prize") public static final PaymentObject GAMBLING_PRIZE
@SerializedName(value="lottery") public static final PaymentObject LOTTERY
@SerializedName(value="lottery_prize") public static final PaymentObject LOTTERY_PRIZE
@SerializedName(value="intellectual_activity") public static final PaymentObject INTELLECTUAL_ACTIVITY
@SerializedName(value="payment") public static final PaymentObject PAYMENT
@SerializedName(value="agent_commission") public static final PaymentObject AGENT_COMMISSION
@SerializedName(value="composite") public static final PaymentObject COMPOSITE
@SerializedName(value="another") public static final PaymentObject ANOTHER
public static PaymentObject[] values()
for (PaymentObject c : PaymentObject.values()) System.out.println(c);
public static PaymentObject 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