public enum PurgeIndicatorStorageEnum extends Enum<PurgeIndicatorStorageEnum>
| Enum Constant and Description |
|---|
ALL |
PRODUCTION |
TEST |
| Modifier and Type | Method and Description |
|---|---|
boolean |
isAll()
Returns
true if the current instance is ALL. |
boolean |
isProduction()
Returns
true if the current instance is PRODUCTION. |
boolean |
isTest()
Returns
true if the current instance is TEST. |
static PurgeIndicatorStorageEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PurgeIndicatorStorageEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PurgeIndicatorStorageEnum ALL
public static final PurgeIndicatorStorageEnum PRODUCTION
public static final PurgeIndicatorStorageEnum TEST
public static PurgeIndicatorStorageEnum[] values()
for (PurgeIndicatorStorageEnum c : PurgeIndicatorStorageEnum.values()) System.out.println(c);
public static PurgeIndicatorStorageEnum 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 nullpublic boolean isProduction()
true if the current instance is PRODUCTION.public boolean isTest()
true if the current instance is TEST.public boolean isAll()
true if the current instance is ALL.