public static enum BankingPayee.Type extends Enum<BankingPayee.Type>
| Enum Constant and Description |
|---|
BILLER |
DOMESTIC |
INTERNATIONAL |
| Modifier and Type | Method and Description |
|---|---|
static BankingPayee.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BankingPayee.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BankingPayee.Type DOMESTIC
public static final BankingPayee.Type INTERNATIONAL
public static final BankingPayee.Type BILLER
public static BankingPayee.Type[] values()
for (BankingPayee.Type c : BankingPayee.Type.values()) System.out.println(c);
public static BankingPayee.Type 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 nullCopyright © 2020. All rights reserved.