public enum Phase extends Enum<Phase>
| Modifier and Type | Method and Description |
|---|---|
static Phase |
fromString(String text) |
String |
id() |
String |
toString() |
static Phase |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Phase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Phase GENERATE_SOURCES
public static final Phase PROCESS_SOURCES
public static final Phase GENERATE_RESOURCES
public static final Phase PROCESS_RESOURCES
public static final Phase COMPILE
public static final Phase PROCESS_CLASSES
public static final Phase GENERATE_TEST_SOURCES
public static final Phase PROCESS_TEST_SOURCES
public static final Phase GENERATE_TEST_RESOURCES
public static final Phase PROCESS_TEST_RESOURCES
public static final Phase TEST_COMPILE
public static final Phase PROCESS_TEST_CLASSES
public static final Phase TEST
public static final Phase PREPARE_PACKAGE
public static final Phase PACKAGE
public static final Phase PRE_INTEGRATION_TEST
public static final Phase INTEGRATION_TEST
public static final Phase POST_INTEGRATION_TEST
public static final Phase VERIFY
public static final Phase INSTALL
public static final Phase DEPLOY
public static final Phase PRE_SITE
public static final Phase SITE
public static final Phase POST_SITE
public static final Phase SITE_DEPLOY
public static Phase[] values()
for (Phase c : Phase.values()) System.out.println(c);
public static Phase 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 nullpublic String id()
Copyright © 2016. All rights reserved.