public enum RemovalDate extends Enum<RemovalDate>
SubjectToRemoval annotation.| Enum Constant and Description |
|---|
JAN_01_2016 |
JUL_01_2015 |
OCT_01_2015 |
| Modifier and Type | Method and Description |
|---|---|
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.
|
public static final RemovalDate JUL_01_2015
public static final RemovalDate OCT_01_2015
public static final RemovalDate JAN_01_2016
public static RemovalDate[] values()
for (RemovalDate c : RemovalDate.values()) System.out.println(c);
public static RemovalDate 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 null