Enum PaymentMethod
-
- All Implemented Interfaces:
-
java.io.Serializable,kotlin.Comparable
public enum PaymentMethod extends Enum<PaymentMethod>
Тип оплаты
Mariya Chernyadieva
-
-
Field Summary
Fields Modifier and Type Field Description private final Stringnameprivate final Integerordinalprivate final EnumEntries<PaymentMethod>entries
-
Enum Constant Summary
Enum Constants Enum Constant Description FULL_PREPAYMENTПредоплата 100% Полная предварительная оплата до момента передачи предмета расчета
PREPAYMENTПредоплата. Частичная предварительная оплата до момента передачи предмета расчета
ADVANCEАванс
FULL_PAYMENTПолный расчет. Полная оплата, в том числе с учетом аванса (предварительной оплаты) в момент передачи
PARTIAL_PAYMENTЧастичный расчет и кредит. Частичная оплата предмета расчета в момент его передачи с последующей оплатой в кредит
CREDITПередача в кредит. Передача предмета расчета без его оплаты в момент его передачи с последующей оплатой в кредит
CREDIT_PAYMENTОплата кредита. Оплата предмета расчета после его передачи с оплатой в кредит
-
Method Summary
Modifier and Type Method Description final PaymentMethodvalueOf(String value)Returns the enum constant of this type with the specified name. final Array<PaymentMethod>values()Returns an array containing the constants of this enum type, in the order they're declared. final EnumEntries<PaymentMethod>getEntries()Тип оплаты -
-
Method Detail
-
valueOf
final PaymentMethod valueOf(String value)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
-
values
final Array<PaymentMethod> values()
Returns an array containing the constants of this enum type, in the order they're declared.
This method may be used to iterate over the constants.
-
getEntries
final EnumEntries<PaymentMethod> getEntries()
Тип оплаты
-
-
-
-