public enum StorageCleanupMode extends Enum<StorageCleanupMode>
Enum Constant and Description |
---|
Backup
Back up the session storage logs
|
Delete
Delete the session storage logs
|
None |
Modifier and Type | Method and Description |
---|---|
static StorageCleanupMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StorageCleanupMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StorageCleanupMode None
public static final StorageCleanupMode Backup
public static final StorageCleanupMode Delete
public static StorageCleanupMode[] values()
for (StorageCleanupMode c : StorageCleanupMode.values()) System.out.println(c);
public static StorageCleanupMode 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 © 2000–2022 EPAM Systems. All rights reserved.