public enum DateTestType extends Enum<DateTestType>
Enum Constant and Description |
---|
NONE
Indicates that no date tests should be done.
|
SOURCES
Indicates that sources should be checked to see if they have been edited
and not saved.
|
STRICT
Indicates that targets should be checked to see if they are up to date,
and that the test for
SOURCES should be done. |
TARGETS
Indicates that targets should be checked to see if they are up to date,
and that the test for
SOURCES should be done. |
Modifier and Type | Method and Description |
---|---|
static DateTestType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DateTestType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DateTestType NONE
public static final DateTestType SOURCES
public static final DateTestType TARGETS
SOURCES
should be done.public static final DateTestType STRICT
SOURCES
should be done. Also, the process
will not be allowed to proceed if sources or missing or for Java if
project sources and targets (classes) are in the same directory and
targets are out of date.public static DateTestType[] values()
for (DateTestType c : DateTestType.values()) System.out.println(c);
public static DateTestType 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