public enum PaymentMethod3Code extends Enum<PaymentMethod3Code>
Java class for PaymentMethod3Code.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="PaymentMethod3Code">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="CHK"/>
<enumeration value="TRF"/>
<enumeration value="TRA"/>
</restriction>
</simpleType>
| Modifier and Type | Method and Description |
|---|---|
static PaymentMethod3Code |
fromValue(String v) |
String |
value() |
static PaymentMethod3Code |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PaymentMethod3Code[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PaymentMethod3Code CHK
public static final PaymentMethod3Code TRF
public static final PaymentMethod3Code TRA
public static PaymentMethod3Code[] values()
for (PaymentMethod3Code c : PaymentMethod3Code.values()) System.out.println(c);
public static PaymentMethod3Code 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 PaymentMethod3Code fromValue(String v)
Copyright © 2019. All rights reserved.