public enum Scope extends Enum<Scope>
| Enum Constant and Description |
|---|
AIS |
AIS_BALANCES |
AIS_TRANSACTIONS |
PIS |
| Modifier and Type | Method and Description |
|---|---|
static boolean |
contains(String value) |
static Scope |
fromValue(String value) |
String |
getValue() |
static boolean |
isAis(Scope scope) |
static boolean |
isPis(Scope scope) |
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 AIS
public static final Scope AIS_BALANCES
public static final Scope AIS_TRANSACTIONS
public static final Scope PIS
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 nullpublic static boolean isAis(Scope scope)
public static boolean isPis(Scope scope)
public static boolean contains(String value)
public String getValue()
Copyright © 2021. All rights reserved.