public enum FlowableIdmEventType extends Enum<FlowableIdmEventType> implements FlowableEventType
| Enum Constant and Description |
|---|
CUSTOM
An event type to be used by custom events.
|
ENGINE_CLOSED
The process-engine that dispatched this event has been closed and cannot be used anymore.
|
ENGINE_CREATED
The process-engine that dispatched this event has been created and is ready for use.
|
ENTITY_CREATED
New entity is created.
|
ENTITY_DELETED
Existing entity is deleted.
|
ENTITY_INITIALIZED
New entity has been created and all child-entities that are created as a result of the creation of this particular entity are also created and initialized.
|
ENTITY_UPDATED
Existing entity us updated.
|
MEMBERSHIP_CREATED
A new membership has been created.
|
MEMBERSHIP_DELETED
A single membership has been deleted.
|
MEMBERSHIPS_DELETED
All memberships in the related group have been deleted.
|
| Modifier and Type | Field and Description |
|---|---|
static FlowableIdmEventType[] |
EMPTY_ARRAY |
| Modifier and Type | Method and Description |
|---|---|
static FlowableIdmEventType[] |
getTypesFromString(String string) |
static FlowableIdmEventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FlowableIdmEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfnamepublic static final FlowableIdmEventType ENTITY_CREATED
public static final FlowableIdmEventType ENTITY_INITIALIZED
public static final FlowableIdmEventType ENTITY_UPDATED
public static final FlowableIdmEventType ENTITY_DELETED
public static final FlowableIdmEventType CUSTOM
public static final FlowableIdmEventType ENGINE_CREATED
public static final FlowableIdmEventType ENGINE_CLOSED
public static final FlowableIdmEventType MEMBERSHIP_CREATED
public static final FlowableIdmEventType MEMBERSHIP_DELETED
public static final FlowableIdmEventType MEMBERSHIPS_DELETED
MEMBERSHIP_DELETED events will be dispatched due to possible performance reasons. The event is dispatched before
the memberships are deleted, so they can still be accessed in the dispatch method of the listener.public static final FlowableIdmEventType[] EMPTY_ARRAY
public static FlowableIdmEventType[] values()
for (FlowableIdmEventType c : FlowableIdmEventType.values()) System.out.println(c);
public static FlowableIdmEventType 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 nullpublic static FlowableIdmEventType[] getTypesFromString(String string)
string - the string containing a comma-separated list of event-type namesFlowableIdmEventType based on the given list.IllegalArgumentException - when one of the given string is not a valid type nameCopyright © 2021 Flowable. All rights reserved.