org.milyn.event.types
Enum FilterLifecycleEvent.EventType
java.lang.Object
java.lang.Enum<FilterLifecycleEvent.EventType>
org.milyn.event.types.FilterLifecycleEvent.EventType
- All Implemented Interfaces:
- Serializable, Comparable<FilterLifecycleEvent.EventType>
- Enclosing class:
- FilterLifecycleEvent
public static enum FilterLifecycleEvent.EventType
- extends Enum<FilterLifecycleEvent.EventType>
|
Enum Constant Summary |
FINISHED
The filtering process has finished. |
STARTED
The filtering process has started. |
STARTED
public static final FilterLifecycleEvent.EventType STARTED
- The filtering process has started.
FINISHED
public static final FilterLifecycleEvent.EventType FINISHED
- The filtering process has finished.
values
public static final FilterLifecycleEvent.EventType[] values()
- Returns an array containing the constants of this enum type, in
the order they're declared. This method may be used to iterate
over the constants as follows:
for(FilterLifecycleEvent.EventType c : FilterLifecycleEvent.EventType.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static FilterLifecycleEvent.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
Copyright © 2008. All Rights Reserved.