Enum PurgeIndicatorStorageEnum
- java.lang.Object
-
- java.lang.Enum<PurgeIndicatorStorageEnum>
-
- com.orchestranetworks.addon.dqid.service.purgeindicator.PurgeIndicatorStorageEnum
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<PurgeIndicatorStorageEnum>
public enum PurgeIndicatorStorageEnum extends java.lang.Enum<PurgeIndicatorStorageEnum>
Enumerates storage options.- Since:
- 2.7.0
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALLPRODUCTIONTEST
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanisAll()Returnstrueif the current instance isALL.booleanisProduction()Returnstrueif the current instance isPRODUCTION.booleanisTest()Returnstrueif the current instance isTEST.static PurgeIndicatorStorageEnumvalueOf(java.lang.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.
-
-
-
Enum Constant Detail
-
ALL
public static final PurgeIndicatorStorageEnum ALL
-
PRODUCTION
public static final PurgeIndicatorStorageEnum PRODUCTION
-
TEST
public static final PurgeIndicatorStorageEnum TEST
-
-
Method Detail
-
values
public static PurgeIndicatorStorageEnum[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (PurgeIndicatorStorageEnum c : PurgeIndicatorStorageEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PurgeIndicatorStorageEnum valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
isProduction
public boolean isProduction()
Returnstrueif the current instance isPRODUCTION.
-
isTest
public boolean isTest()
Returnstrueif the current instance isTEST.
-
isAll
public boolean isAll()
Returnstrueif the current instance isALL.
-
-