org.apache.camel.component.spring.batch.support
Enum CamelJobExecutionListener.EventType

java.lang.Object
  extended by java.lang.Enum<CamelJobExecutionListener.EventType>
      extended by org.apache.camel.component.spring.batch.support.CamelJobExecutionListener.EventType
All Implemented Interfaces:
Serializable, Comparable<CamelJobExecutionListener.EventType>
Enclosing class:
CamelJobExecutionListener

public static enum CamelJobExecutionListener.EventType
extends Enum<CamelJobExecutionListener.EventType>


Enum Constant Summary
AFTER
           
BEFORE
           
 
Field Summary
static String HEADER_KEY
           
 
Method Summary
static CamelJobExecutionListener.EventType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static CamelJobExecutionListener.EventType[] 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

BEFORE

public static final CamelJobExecutionListener.EventType BEFORE

AFTER

public static final CamelJobExecutionListener.EventType AFTER
Field Detail

HEADER_KEY

public static final String HEADER_KEY
See Also:
Constant Field Values
Method Detail

values

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

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

valueOf

public static CamelJobExecutionListener.EventType 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


Apache Camel