Enum PurgeIndicatorDateTypeEnum
- java.lang.Object
-
- java.lang.Enum<PurgeIndicatorDateTypeEnum>
-
- com.orchestranetworks.addon.dqid.service.purgeindicator.PurgeIndicatorDateTypeEnum
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<PurgeIndicatorDateTypeEnum>
public enum PurgeIndicatorDateTypeEnum extends java.lang.Enum<PurgeIndicatorDateTypeEnum>
Enumerates date options.- Since:
- 2.7.0
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description com.onwbp.base.text.UserMessagegetLabel()Returns theDateTypeEnumlabel.java.lang.StringgetOption()Returns thePurgeIndicatorDateTypeEnumoption.booleanisAll()Returnstrueif the current instance isALL.booleanisExact()Returnstrueif the current instance isEXACT.booleanisInterval()Returnstrueif the current instance isINTERVAL.static PurgeIndicatorDateTypeEnumparse(java.lang.String option)ReturnsPurgeIndicatorDateTypeEnumbased on the option parameter.static PurgeIndicatorDateTypeEnumvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static PurgeIndicatorDateTypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALL
public static final PurgeIndicatorDateTypeEnum ALL
-
EXACT
public static final PurgeIndicatorDateTypeEnum EXACT
-
INTERVAL
public static final PurgeIndicatorDateTypeEnum INTERVAL
-
-
Method Detail
-
values
public static PurgeIndicatorDateTypeEnum[] 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 (PurgeIndicatorDateTypeEnum c : PurgeIndicatorDateTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PurgeIndicatorDateTypeEnum 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
-
parse
public static PurgeIndicatorDateTypeEnum parse(java.lang.String option)
ReturnsPurgeIndicatorDateTypeEnumbased on the option parameter.
-
getOption
public java.lang.String getOption()
Returns thePurgeIndicatorDateTypeEnumoption.
-
getLabel
public com.onwbp.base.text.UserMessage getLabel()
Returns theDateTypeEnumlabel.
-
isAll
public boolean isAll()
Returnstrueif the current instance isALL.
-
isExact
public boolean isExact()
Returnstrueif the current instance isEXACT.
-
isInterval
public boolean isInterval()
Returnstrueif the current instance isINTERVAL.
-
-