Enum CamelJobExecutionListener.EventType
- java.lang.Object
-
- java.lang.Enum<CamelJobExecutionListener.EventType>
-
- 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>
-
-
Field Summary
Fields Modifier and Type Field Description static String
HEADER_KEY
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description 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.
-
-
-
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 nameNullPointerException
- if the argument is null
-
-