Package com.chemaxon.common.annotations
Enum RemovalDate
- java.lang.Object
-
- java.lang.Enum<RemovalDate>
-
- com.chemaxon.common.annotations.RemovalDate
-
- All Implemented Interfaces:
Serializable
,Comparable<RemovalDate>
@PublicAPI public enum RemovalDate extends Enum<RemovalDate>
Date values accepted by theSubjectToRemoval
annotation.WARNING: for internal use only! Each value of this enum is subject to removal when the corresponding date is reached.
- Since:
- 5.12
-
-
Enum Constant Summary
Enum Constants Enum Constant Description JAN_01_2024
JAN_01_2025
JAN_01_2026
JUL_01_2023
JUL_01_2024
JUL_01_2025
JUL_01_2026
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
isPassed()
static RemovalDate
valueOf(String name)
Returns the enum constant of this type with the specified name.static RemovalDate[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
JUL_01_2023
public static final RemovalDate JUL_01_2023
-
JAN_01_2024
public static final RemovalDate JAN_01_2024
-
JUL_01_2024
public static final RemovalDate JUL_01_2024
-
JAN_01_2025
public static final RemovalDate JAN_01_2025
-
JUL_01_2025
public static final RemovalDate JUL_01_2025
-
JAN_01_2026
public static final RemovalDate JAN_01_2026
-
JUL_01_2026
public static final RemovalDate JUL_01_2026
-
-
Method Detail
-
values
public static RemovalDate[] 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 (RemovalDate c : RemovalDate.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RemovalDate valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
isPassed
public boolean isPassed()
-
-