Package io.moov.sdk.models.components
Enum ApplicationScope
- java.lang.Object
-
- java.lang.Enum<ApplicationScope>
-
- io.moov.sdk.models.components.ApplicationScope
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ApplicationScope>
public enum ApplicationScope extends java.lang.Enum<ApplicationScope>
ApplicationScopeA permission that the application requests on another account.
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static java.util.Optional<ApplicationScope>fromValue(java.lang.String value)java.lang.Stringvalue()static ApplicationScopevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ApplicationScope[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACCOUNTS_READ
public static final ApplicationScope ACCOUNTS_READ
-
ACCOUNTS_WRITE
public static final ApplicationScope ACCOUNTS_WRITE
-
ANALYTICS_READ
public static final ApplicationScope ANALYTICS_READ
-
APPLE_PAY_MERCHANT_READ
public static final ApplicationScope APPLE_PAY_MERCHANT_READ
-
APPLE_PAY_MERCHANT_WRITE
public static final ApplicationScope APPLE_PAY_MERCHANT_WRITE
-
APPLE_PAY_READ
public static final ApplicationScope APPLE_PAY_READ
-
APPLE_PAY_WRITE
public static final ApplicationScope APPLE_PAY_WRITE
-
BANK_ACCOUNTS_READ
public static final ApplicationScope BANK_ACCOUNTS_READ
-
BANK_ACCOUNTS_WRITE
public static final ApplicationScope BANK_ACCOUNTS_WRITE
-
CAPABILITIES_READ
public static final ApplicationScope CAPABILITIES_READ
-
CAPABILITIES_WRITE
public static final ApplicationScope CAPABILITIES_WRITE
-
CARDS_READ
public static final ApplicationScope CARDS_READ
-
CARDS_WRITE
public static final ApplicationScope CARDS_WRITE
-
DOCUMENTS_READ
public static final ApplicationScope DOCUMENTS_READ
-
DOCUMENTS_WRITE
public static final ApplicationScope DOCUMENTS_WRITE
-
FED_READ
public static final ApplicationScope FED_READ
-
FILES_READ
public static final ApplicationScope FILES_READ
-
FILES_WRITE
public static final ApplicationScope FILES_WRITE
-
ISSUED_CARDS_READ
public static final ApplicationScope ISSUED_CARDS_READ
-
ISSUED_CARDS_WRITE
public static final ApplicationScope ISSUED_CARDS_WRITE
-
ISSUED_CARDS_READ_SECURE
public static final ApplicationScope ISSUED_CARDS_READ_SECURE
-
PAYMENT_METHODS_READ
public static final ApplicationScope PAYMENT_METHODS_READ
-
PING_READ
public static final ApplicationScope PING_READ
-
PROFILE_ENRICHMENT_READ
public static final ApplicationScope PROFILE_ENRICHMENT_READ
-
PROFILE_READ
public static final ApplicationScope PROFILE_READ
-
PROFILE_WRITE
public static final ApplicationScope PROFILE_WRITE
-
PROFILE_DISCONNECT
public static final ApplicationScope PROFILE_DISCONNECT
-
REPRESENTATIVES_READ
public static final ApplicationScope REPRESENTATIVES_READ
-
REPRESENTATIVES_WRITE
public static final ApplicationScope REPRESENTATIVES_WRITE
-
TRANSFERS_READ
public static final ApplicationScope TRANSFERS_READ
-
TRANSFERS_WRITE
public static final ApplicationScope TRANSFERS_WRITE
-
WALLETS_READ
public static final ApplicationScope WALLETS_READ
-
-
Method Detail
-
values
public static ApplicationScope[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ApplicationScope c : ApplicationScope.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ApplicationScope valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
value
public java.lang.String value()
-
fromValue
public static java.util.Optional<ApplicationScope> fromValue(java.lang.String value)
-
-