Enum ApplicationWithSecretIdpModel.ScopesEnum
- java.lang.Object
-
- java.lang.Enum<ApplicationWithSecretIdpModel.ScopesEnum>
-
- app.cybrid.cybrid_api_id.client.model.ApplicationWithSecretIdpModel.ScopesEnum
-
- All Implemented Interfaces:
Serializable,Comparable<ApplicationWithSecretIdpModel.ScopesEnum>
- Enclosing class:
- ApplicationWithSecretIdpModel
public static enum ApplicationWithSecretIdpModel.ScopesEnum extends Enum<ApplicationWithSecretIdpModel.ScopesEnum>
Gets or Sets scopes
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACCOUNTS_EXECUTEACCOUNTS_READBANKS_EXECUTEBANKS_READBANKS_WRITECUSTOMERS_EXECUTECUSTOMERS_READCUSTOMERS_WRITEORGANIZATIONS_READORGANIZATIONS_WRITEPRICES_READQUOTES_EXECUTEQUOTES_READTRADES_EXECUTETRADES_READ
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ApplicationWithSecretIdpModel.ScopesEnumfromValue(String value)StringgetValue()StringtoString()static ApplicationWithSecretIdpModel.ScopesEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static ApplicationWithSecretIdpModel.ScopesEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ORGANIZATIONS_READ
public static final ApplicationWithSecretIdpModel.ScopesEnum ORGANIZATIONS_READ
-
ORGANIZATIONS_WRITE
public static final ApplicationWithSecretIdpModel.ScopesEnum ORGANIZATIONS_WRITE
-
BANKS_READ
public static final ApplicationWithSecretIdpModel.ScopesEnum BANKS_READ
-
BANKS_WRITE
public static final ApplicationWithSecretIdpModel.ScopesEnum BANKS_WRITE
-
BANKS_EXECUTE
public static final ApplicationWithSecretIdpModel.ScopesEnum BANKS_EXECUTE
-
CUSTOMERS_READ
public static final ApplicationWithSecretIdpModel.ScopesEnum CUSTOMERS_READ
-
ACCOUNTS_READ
public static final ApplicationWithSecretIdpModel.ScopesEnum ACCOUNTS_READ
-
QUOTES_READ
public static final ApplicationWithSecretIdpModel.ScopesEnum QUOTES_READ
-
TRADES_READ
public static final ApplicationWithSecretIdpModel.ScopesEnum TRADES_READ
-
ACCOUNTS_EXECUTE
public static final ApplicationWithSecretIdpModel.ScopesEnum ACCOUNTS_EXECUTE
-
CUSTOMERS_WRITE
public static final ApplicationWithSecretIdpModel.ScopesEnum CUSTOMERS_WRITE
-
CUSTOMERS_EXECUTE
public static final ApplicationWithSecretIdpModel.ScopesEnum CUSTOMERS_EXECUTE
-
PRICES_READ
public static final ApplicationWithSecretIdpModel.ScopesEnum PRICES_READ
-
QUOTES_EXECUTE
public static final ApplicationWithSecretIdpModel.ScopesEnum QUOTES_EXECUTE
-
TRADES_EXECUTE
public static final ApplicationWithSecretIdpModel.ScopesEnum TRADES_EXECUTE
-
-
Method Detail
-
values
public static ApplicationWithSecretIdpModel.ScopesEnum[] 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 (ApplicationWithSecretIdpModel.ScopesEnum c : ApplicationWithSecretIdpModel.ScopesEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ApplicationWithSecretIdpModel.ScopesEnum valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toStringin classEnum<ApplicationWithSecretIdpModel.ScopesEnum>
-
fromValue
public static ApplicationWithSecretIdpModel.ScopesEnum fromValue(String value)
-
-