public static enum Account.SupportedOrdersEnum extends Enum<Account.SupportedOrdersEnum>
| Modifier and Type | Class and Description |
|---|---|
static class |
Account.SupportedOrdersEnum.Adapter |
| Enum Constant and Description |
|---|
B2B_COLLECTIVE_DIRECT_DEBIT |
B2B_DIRECT_DEBIT |
BASIC_COLLECTIVE_DIRECT_DEBIT |
BASIC_DIRECT_DEBIT |
COLLECTIVE_MONEY_TRANSFER |
MONEY_TRANSFER |
| Modifier and Type | Method and Description |
|---|---|
static Account.SupportedOrdersEnum |
fromValue(String text) |
String |
getValue() |
String |
toString() |
static Account.SupportedOrdersEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Account.SupportedOrdersEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Account.SupportedOrdersEnum MONEY_TRANSFER
public static final Account.SupportedOrdersEnum COLLECTIVE_MONEY_TRANSFER
public static final Account.SupportedOrdersEnum BASIC_DIRECT_DEBIT
public static final Account.SupportedOrdersEnum BASIC_COLLECTIVE_DIRECT_DEBIT
public static final Account.SupportedOrdersEnum B2B_DIRECT_DEBIT
public static final Account.SupportedOrdersEnum B2B_COLLECTIVE_DIRECT_DEBIT
public static Account.SupportedOrdersEnum[] values()
for (Account.SupportedOrdersEnum c : Account.SupportedOrdersEnum.values()) System.out.println(c);
public static Account.SupportedOrdersEnum 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 getValue()
public String toString()
toString in class Enum<Account.SupportedOrdersEnum>public static Account.SupportedOrdersEnum fromValue(String text)
Copyright © 2018. All rights reserved.