public enum ContextMode extends Enum<ContextMode>
MOCK_REAL_CALLSREAL_CALLS| Enum Constant and Description |
|---|
MOCK_REAL_CALLS
Validation mode - checking if all parameters for ASPSP API calls are present.
|
REAL_CALLS
Real mode - calling ASPSP API
|
| Modifier and Type | Method and Description |
|---|---|
static ContextMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ContextMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ContextMode REAL_CALLS
public static final ContextMode MOCK_REAL_CALLS
public static ContextMode[] values()
for (ContextMode c : ContextMode.values()) System.out.println(c);
public static ContextMode 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.