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