public enum PaymentTypeEnumeration extends Enum<PaymentTypeEnumeration>
Java class for PaymentTypeEnumeration.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="PaymentTypeEnumeration">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="Normal"/>
<enumeration value="Refund"/>
<enumeration value="OneTimeReservation"/>
<enumeration value="FirstReservation"/>
<enumeration value="UpdateReservation"/>
<enumeration value="Completion"/>
<enumeration value="CashAdvance"/>
<enumeration value="CashDeposit"/>
<enumeration value="Recurring"/>
<enumeration value="Instalment"/>
<enumeration value="IssuerInstalment"/>
<enumeration value="PaidOut"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
CASH_ADVANCE
Cash advance at the POI System.
|
CASH_DEPOSIT
Cash deposit at the POI System, to credit an account.
|
COMPLETION
End of the reservation transaction.
|
FIRST_RESERVATION
First reservation for an amount and period of time.
|
INSTALMENT
Instalments of payment performed on behalf of the merchant.
|
ISSUER_INSTALMENT
Instalments of payment performed by the card issuer.
|
NORMAL
Normal Payment
|
ONE_TIME_RESERVATION
One time reservation to be just followed by a completion when the service or good is delivered.
|
PAID_OUT
Give money to in return for goods or services rendered to the merchant.
|
RECURRING
Recurring payment.
|
REFUND
Payment refund
|
UPDATE_RESERVATION
Adjustment of the amount or period of time of a reservation.
|
| Modifier and Type | Method and Description |
|---|---|
static PaymentTypeEnumeration |
fromValue(String v) |
String |
value() |
static PaymentTypeEnumeration |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PaymentTypeEnumeration[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PaymentTypeEnumeration NORMAL
public static final PaymentTypeEnumeration REFUND
public static final PaymentTypeEnumeration ONE_TIME_RESERVATION
public static final PaymentTypeEnumeration FIRST_RESERVATION
public static final PaymentTypeEnumeration UPDATE_RESERVATION
public static final PaymentTypeEnumeration COMPLETION
public static final PaymentTypeEnumeration CASH_ADVANCE
public static final PaymentTypeEnumeration CASH_DEPOSIT
public static final PaymentTypeEnumeration RECURRING
public static final PaymentTypeEnumeration INSTALMENT
public static final PaymentTypeEnumeration ISSUER_INSTALMENT
public static final PaymentTypeEnumeration PAID_OUT
public static PaymentTypeEnumeration[] values()
for (PaymentTypeEnumeration c : PaymentTypeEnumeration.values()) System.out.println(c);
public static PaymentTypeEnumeration valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String value()
public static PaymentTypeEnumeration fromValue(String v)
Copyright © 2018. All rights reserved.