public enum PaymentInstrumentTypeEnumeration extends Enum<PaymentInstrumentTypeEnumeration>
Java class for PaymentInstrumentTypeEnumeration.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="PaymentInstrumentTypeEnumeration">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="Card"/>
<enumeration value="Check"/>
<enumeration value="Mobile"/>
<enumeration value="StoredValue"/>
<enumeration value="Cash"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
CARD
Payment card (credit or debit).
|
CASH
Cash managed by a cash handling system.
|
CHECK
Paper check.
|
MOBILE
Operator account accessed by a mobile phone.
|
STORED_VALUE
Account accesed by a stored value instrument such as a card or a certificate.
|
| Modifier and Type | Method and Description |
|---|---|
static PaymentInstrumentTypeEnumeration |
fromValue(String v) |
String |
value() |
static PaymentInstrumentTypeEnumeration |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PaymentInstrumentTypeEnumeration[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PaymentInstrumentTypeEnumeration CARD
public static final PaymentInstrumentTypeEnumeration CHECK
public static final PaymentInstrumentTypeEnumeration MOBILE
public static final PaymentInstrumentTypeEnumeration STORED_VALUE
public static final PaymentInstrumentTypeEnumeration CASH
public static PaymentInstrumentTypeEnumeration[] values()
for (PaymentInstrumentTypeEnumeration c : PaymentInstrumentTypeEnumeration.values()) System.out.println(c);
public static PaymentInstrumentTypeEnumeration 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 PaymentInstrumentTypeEnumeration fromValue(String v)
Copyright © 2018. All rights reserved.