public static enum EntryProcessorEvent.Type extends Enum<EntryProcessorEvent.Type>
EntryProcessorEvent types.| Enum Constant and Description |
|---|
EXECUTED
This
EntryProcessorEvent is dispatched after an InvocableMap.EntryProcessor has been executed. |
EXECUTING
This
EntryProcessorEvent is raised prior to executing an InvocableMap.EntryProcessor on a set of entries. |
| Modifier and Type | Method and Description |
|---|---|
static EntryProcessorEvent.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EntryProcessorEvent.Type[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final EntryProcessorEvent.Type EXECUTING
EntryProcessorEvent is raised prior to executing an InvocableMap.EntryProcessor on a set of entries.
The following holds:
InvocableMap.EntryProcessor provided for this event type is mutable. The processor could be shared across threads, so processor implementations modified in this fashion must ensure thread-safetypublic static final EntryProcessorEvent.Type EXECUTED
EntryProcessorEvent is dispatched after an InvocableMap.EntryProcessor has been executed.public static EntryProcessorEvent.Type[] values()
for (EntryProcessorEvent.Type c : EntryProcessorEvent.Type.values())
System.out.println(c);
public static EntryProcessorEvent.Type valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null