public static enum ConsumeAction.RelevantOption extends java.lang.Enum<ConsumeAction.RelevantOption>
Enum Constant and Description |
---|
CONSUME_USING_OTHER_ASSETS
Allows to Consume using other assets, instead of consumption using Access tokens.
|
CREATE_APPLICATION_ASSET_FOR_RUNTIME_ENFORCEMENTS
Allows to create a Consumer Application asset on the fly, if the Evaluate policies are enforced.
|
CREATE_OTHER_CONSUMER_ASSETS
Allows to create an asset instance from the applicable consumable types.
|
Modifier and Type | Method and Description |
---|---|
static ConsumeAction.RelevantOption |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ConsumeAction.RelevantOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConsumeAction.RelevantOption CONSUME_USING_OTHER_ASSETS
public static final ConsumeAction.RelevantOption CREATE_APPLICATION_ASSET_FOR_RUNTIME_ENFORCEMENTS
public static final ConsumeAction.RelevantOption CREATE_OTHER_CONSUMER_ASSETS
public static ConsumeAction.RelevantOption[] values()
for (ConsumeAction.RelevantOption c : ConsumeAction.RelevantOption.values()) System.out.println(c);
public static ConsumeAction.RelevantOption valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null