public enum StoragePolicyType extends Enum<StoragePolicyType>
| Enum Constant and Description |
|---|
AUTO_DELETE |
AUTO_EXPAND |
DYNAMIC_RETENTION |
NONE |
| Modifier and Type | Method and Description |
|---|---|
static StoragePolicyType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StoragePolicyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StoragePolicyType NONE
public static final StoragePolicyType AUTO_DELETE
public static final StoragePolicyType AUTO_EXPAND
public static final StoragePolicyType DYNAMIC_RETENTION
public static StoragePolicyType[] values()
for (StoragePolicyType c : StoragePolicyType.values()) System.out.println(c);
public static StoragePolicyType 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 nullCopyright © 2024. All rights reserved.