public static enum Sql.ExecutionPhase extends Enum<Sql.ExecutionPhase>
Enum Constant and Description |
---|
AFTER_TEST_METHOD
The configured SQL scripts and statements will be executed
after the corresponding test method.
|
BEFORE_TEST_METHOD
The configured SQL scripts and statements will be executed
before the corresponding test method.
|
Modifier and Type | Method and Description |
---|---|
static Sql.ExecutionPhase |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Sql.ExecutionPhase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Sql.ExecutionPhase BEFORE_TEST_METHOD
public static final Sql.ExecutionPhase AFTER_TEST_METHOD
public static Sql.ExecutionPhase[] values()
for (Sql.ExecutionPhase c : Sql.ExecutionPhase.values()) System.out.println(c);
public static Sql.ExecutionPhase 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