public static enum BoxRetentionPolicy.BoxRetentionPolicyAction extends Enum<BoxRetentionPolicy.BoxRetentionPolicyAction>
Enum Constant and Description |
---|
PermanentlyDelete
Will cause the content retained by the policy to be permanently deleted.
|
RemoveRetention
Will lift the retention policy from the content, allowing it to be deleted by users.
|
Modifier and Type | Method and Description |
---|---|
static BoxRetentionPolicy.BoxRetentionPolicyAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BoxRetentionPolicy.BoxRetentionPolicyAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BoxRetentionPolicy.BoxRetentionPolicyAction PermanentlyDelete
public static final BoxRetentionPolicy.BoxRetentionPolicyAction RemoveRetention
public static BoxRetentionPolicy.BoxRetentionPolicyAction[] values()
for (BoxRetentionPolicy.BoxRetentionPolicyAction c : BoxRetentionPolicy.BoxRetentionPolicyAction.values()) System.out.println(c);
public static BoxRetentionPolicy.BoxRetentionPolicyAction 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 null