public enum TargetPhase extends Enum<TargetPhase>
| Enum Constant and Description |
|---|
CONSTRAINTS |
CONTENT |
SETUP |
TABLE_STRUCTURE |
| Modifier and Type | Method and Description |
|---|---|
static TargetPhase |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TargetPhase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TargetPhase SETUP
public static final TargetPhase TABLE_STRUCTURE
public static final TargetPhase CONSTRAINTS
public static final TargetPhase CONTENT
public static TargetPhase[] values()
for (TargetPhase c : TargetPhase.values()) System.out.println(c);
public static TargetPhase 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 nullCopyright © 2017. All rights reserved.