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