org.apache.maven.plugins.annotations
Enum LifecyclePhase

java.lang.Object
  extended by java.lang.Enum<LifecyclePhase>
      extended by org.apache.maven.plugins.annotations.LifecyclePhase
All Implemented Interfaces:
Serializable, Comparable<LifecyclePhase>

public enum LifecyclePhase
extends Enum<LifecyclePhase>

Lifecycle phases.

Since:
3.0
Author:
Olivier Lamy

Enum Constant Summary
CLEAN
           
COMPILE
           
DEPLOY
           
GENERATE_RESOURCES
           
GENERATE_SOURCES
           
GENERATE_TEST_RESOURCES
           
GENERATE_TEST_SOURCES
           
INITIALIZE
           
INSTALL
           
INTEGRATION_TEST
           
NONE
           
PACKAGE
           
POST_CLEAN
           
POST_INTEGRATION_TEST
           
POST_SITE
           
PRE_CLEAN
           
PRE_INTEGRATION_TEST
           
PRE_SITE
           
PREPARE_PACKAGE
           
PROCESS_CLASSES
           
PROCESS_RESOURCES
           
PROCESS_SOURCES
           
PROCESS_TEST_CLASSES
           
PROCESS_TEST_RESOURCES
           
PROCESS_TEST_SOURCES
           
SITE
           
SITE_DEPLOY
           
TEST
           
TEST_COMPILE
           
VALIDATE
           
VERIFY
           
 
Method Summary
 String id()
           
static LifecyclePhase valueOf(String name)
          Returns the enum constant of this type with the specified name.
static LifecyclePhase[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

VALIDATE

public static final LifecyclePhase VALIDATE

INITIALIZE

public static final LifecyclePhase INITIALIZE

GENERATE_SOURCES

public static final LifecyclePhase GENERATE_SOURCES

PROCESS_SOURCES

public static final LifecyclePhase PROCESS_SOURCES

GENERATE_RESOURCES

public static final LifecyclePhase GENERATE_RESOURCES

PROCESS_RESOURCES

public static final LifecyclePhase PROCESS_RESOURCES

COMPILE

public static final LifecyclePhase COMPILE

PROCESS_CLASSES

public static final LifecyclePhase PROCESS_CLASSES

GENERATE_TEST_SOURCES

public static final LifecyclePhase GENERATE_TEST_SOURCES

PROCESS_TEST_SOURCES

public static final LifecyclePhase PROCESS_TEST_SOURCES

GENERATE_TEST_RESOURCES

public static final LifecyclePhase GENERATE_TEST_RESOURCES

PROCESS_TEST_RESOURCES

public static final LifecyclePhase PROCESS_TEST_RESOURCES

TEST_COMPILE

public static final LifecyclePhase TEST_COMPILE

PROCESS_TEST_CLASSES

public static final LifecyclePhase PROCESS_TEST_CLASSES

TEST

public static final LifecyclePhase TEST

PREPARE_PACKAGE

public static final LifecyclePhase PREPARE_PACKAGE

PACKAGE

public static final LifecyclePhase PACKAGE

PRE_INTEGRATION_TEST

public static final LifecyclePhase PRE_INTEGRATION_TEST

INTEGRATION_TEST

public static final LifecyclePhase INTEGRATION_TEST

POST_INTEGRATION_TEST

public static final LifecyclePhase POST_INTEGRATION_TEST

VERIFY

public static final LifecyclePhase VERIFY

INSTALL

public static final LifecyclePhase INSTALL

DEPLOY

public static final LifecyclePhase DEPLOY

PRE_CLEAN

public static final LifecyclePhase PRE_CLEAN

CLEAN

public static final LifecyclePhase CLEAN

POST_CLEAN

public static final LifecyclePhase POST_CLEAN

PRE_SITE

public static final LifecyclePhase PRE_SITE

SITE

public static final LifecyclePhase SITE

POST_SITE

public static final LifecyclePhase POST_SITE

SITE_DEPLOY

public static final LifecyclePhase SITE_DEPLOY

NONE

public static final LifecyclePhase NONE
Method Detail

values

public static LifecyclePhase[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (LifecyclePhase c : LifecyclePhase.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static LifecyclePhase valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

id

public String id()


Copyright © 2004-2012 The Apache Software Foundation. All Rights Reserved.