public enum Scope extends Enum<Scope>
| Enum Constant and Description |
|---|
BANK_BASIC_ACCOUNTS |
BANK_DETAILED_ACCOUNTS |
BANK_PAYEES |
BANK_TRANSACTIONS |
COMMON_BASIC_CUSTOMER |
COMMON_DETAILED_CUSTOMER |
UNDEFINED_SCOPE |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static Scope |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Scope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Scope UNDEFINED_SCOPE
public static final Scope COMMON_BASIC_CUSTOMER
public static final Scope BANK_PAYEES
public static final Scope BANK_BASIC_ACCOUNTS
public static final Scope BANK_DETAILED_ACCOUNTS
public static final Scope BANK_TRANSACTIONS
public static final Scope COMMON_DETAILED_CUSTOMER
public static Scope[] values()
for (Scope c : Scope.values()) System.out.println(c);
public static Scope 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.