Enum AbstractStatisticEvent.EventType
- java.lang.Object
-
- java.lang.Enum<AbstractStatisticEvent.EventType>
-
- org.apache.synapse.aspects.flow.statistics.log.templates.AbstractStatisticEvent.EventType
-
- All Implemented Interfaces:
Serializable
,Comparable<AbstractStatisticEvent.EventType>
- Enclosing class:
- AbstractStatisticEvent
public static enum AbstractStatisticEvent.EventType extends Enum<AbstractStatisticEvent.EventType>
Event type enum
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AbstractStatisticEvent.EventType
valueOf(String name)
Returns the enum constant of this type with the specified name.static AbstractStatisticEvent.EventType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ASYNCHRONOUS_EXECUTION_EVENT
public static final AbstractStatisticEvent.EventType ASYNCHRONOUS_EXECUTION_EVENT
-
CALLBACK_COMPLETION_EVENT
public static final AbstractStatisticEvent.EventType CALLBACK_COMPLETION_EVENT
-
CALLBACK_HANDLED_EVENT
public static final AbstractStatisticEvent.EventType CALLBACK_HANDLED_EVENT
-
CALLBACK_RECEIVED_EVENT
public static final AbstractStatisticEvent.EventType CALLBACK_RECEIVED_EVENT
-
CALLBACK_SENT_EVENT
public static final AbstractStatisticEvent.EventType CALLBACK_SENT_EVENT
-
ENDFLOW_EVENT
public static final AbstractStatisticEvent.EventType ENDFLOW_EVENT
-
FAULT_EVENT
public static final AbstractStatisticEvent.EventType FAULT_EVENT
-
PARENT_REOPEN_EVENT
public static final AbstractStatisticEvent.EventType PARENT_REOPEN_EVENT
-
STATISTICS_CLOSE_EVENT
public static final AbstractStatisticEvent.EventType STATISTICS_CLOSE_EVENT
-
STATISTICS_OPEN_EVENT
public static final AbstractStatisticEvent.EventType STATISTICS_OPEN_EVENT
-
-
Method Detail
-
values
public static AbstractStatisticEvent.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 (AbstractStatisticEvent.EventType c : AbstractStatisticEvent.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 AbstractStatisticEvent.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
-
-