public enum ScopeObject extends Enum<ScopeObject>
FieldCode
code should be applied to. For example there can be nested form that shows
IBAN input for consent object and Password input for authorization. To clearly identify where each field is
located - IBAN in consent, password in enveloping form, this class is used.Enum Constant and Description |
---|
AIS_CONSENT
This field is inside AIS (Account Information Services) consent form.
|
AIS_CONSENT_SCOPE
This field is inside AIS (Account Information Services) Consent Scope form.
|
GENERAL
This field is located in general form (no preference).
|
PIS_CONSENT
This field is inside AIS (Account Information Services) consent form.
|
Modifier and Type | Method and Description |
---|---|
static ScopeObject |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ScopeObject[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScopeObject GENERAL
public static final ScopeObject AIS_CONSENT
public static final ScopeObject AIS_CONSENT_SCOPE
public static final ScopeObject PIS_CONSENT
public static ScopeObject[] values()
for (ScopeObject c : ScopeObject.values()) System.out.println(c);
public static ScopeObject 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.