org.apache.maven.execution
Enum ExecutionEvent.Type

java.lang.Object
  extended by java.lang.Enum<ExecutionEvent.Type>
      extended by org.apache.maven.execution.ExecutionEvent.Type
All Implemented Interfaces:
Serializable, Comparable<ExecutionEvent.Type>
Enclosing interface:
ExecutionEvent

public static enum ExecutionEvent.Type
extends Enum<ExecutionEvent.Type>

The possible types of execution events.


Enum Constant Summary
ForkedProjectFailed
           
ForkedProjectStarted
           
ForkedProjectSucceeded
           
ForkFailed
           
ForkStarted
           
ForkSucceeded
           
MojoFailed
           
MojoSkipped
           
MojoStarted
           
MojoSucceeded
           
ProjectDiscoveryStarted
           
ProjectFailed
           
ProjectSkipped
           
ProjectStarted
           
ProjectSucceeded
           
SessionEnded
           
SessionStarted
           
 
Method Summary
static ExecutionEvent.Type valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ExecutionEvent.Type[] 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

ProjectDiscoveryStarted

public static final ExecutionEvent.Type ProjectDiscoveryStarted

SessionStarted

public static final ExecutionEvent.Type SessionStarted

SessionEnded

public static final ExecutionEvent.Type SessionEnded

ProjectSkipped

public static final ExecutionEvent.Type ProjectSkipped

ProjectStarted

public static final ExecutionEvent.Type ProjectStarted

ProjectSucceeded

public static final ExecutionEvent.Type ProjectSucceeded

ProjectFailed

public static final ExecutionEvent.Type ProjectFailed

MojoSkipped

public static final ExecutionEvent.Type MojoSkipped

MojoStarted

public static final ExecutionEvent.Type MojoStarted

MojoSucceeded

public static final ExecutionEvent.Type MojoSucceeded

MojoFailed

public static final ExecutionEvent.Type MojoFailed

ForkStarted

public static final ExecutionEvent.Type ForkStarted

ForkSucceeded

public static final ExecutionEvent.Type ForkSucceeded

ForkFailed

public static final ExecutionEvent.Type ForkFailed

ForkedProjectStarted

public static final ExecutionEvent.Type ForkedProjectStarted

ForkedProjectSucceeded

public static final ExecutionEvent.Type ForkedProjectSucceeded

ForkedProjectFailed

public static final ExecutionEvent.Type ForkedProjectFailed
Method Detail

values

public static ExecutionEvent.Type[] 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 (ExecutionEvent.Type c : ExecutionEvent.Type.values())
    System.out.println(c);

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

valueOf

public static ExecutionEvent.Type 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


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