public enum PaymentMethod extends java.lang.Enum<PaymentMethod>
| Enum Constant and Description |
|---|
ADVANCE
Аванс.
|
CREDIT
Передача в кредит.
|
CREDIT_PAYMENT
Оплата кредита.
|
FULL_PAYMENT
Полный расчет.
|
FULL_PREPAYMENT
Предоплата 100%.
|
PARTIAL_PAYMENT
Частичный расчет и кредит.
|
PREPAYMENT
Предоплата.
|
| Modifier and Type | Method and Description |
|---|---|
static PaymentMethod |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PaymentMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="full_prepayment") public static final PaymentMethod FULL_PREPAYMENT
@SerializedName(value="prepayment") public static final PaymentMethod PREPAYMENT
@SerializedName(value="advance") public static final PaymentMethod ADVANCE
@SerializedName(value="full_payment") public static final PaymentMethod FULL_PAYMENT
@SerializedName(value="partial_payment") public static final PaymentMethod PARTIAL_PAYMENT
@SerializedName(value="credit") public static final PaymentMethod CREDIT
@SerializedName(value="credit_payment") public static final PaymentMethod CREDIT_PAYMENT
public static PaymentMethod[] values()
for (PaymentMethod c : PaymentMethod.values()) System.out.println(c);
public static PaymentMethod 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