public static enum Element.ElementType extends Enum<Element.ElementType>
Enum Constant and Description |
---|
END
An event that represents the end of the process flow.
|
EVENT_GATEWAY
A element that represents a wait state.
|
INTERMEDIATE_CATCH_SIGNAL_EVENT
An element that represents a wait state.
|
INTERMEDIATE_CATCH_TIMER_EVENT
An element that represents a wait state.
|
START
An event that represents the start of the process flow.
|
SYSTEM_JOB_EXEC
A task that runs a job and waits until the job completes before the process flow continues.
|
SYSTEM_JOB_EXEC_NO_WAIT
A task that runs a job and continues the process flow without waiting for the job to complete.
|
SYSTEM_NOTIFICATION
A task that sends a notification to specific recipients.
|
TERMINATE_END
An element that represents the termination of the process flow.
|
USER_TASK
A task that is performed by a user.
|
Modifier and Type | Method and Description |
---|---|
static Element.ElementType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Element.ElementType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Element.ElementType SYSTEM_JOB_EXEC
public static final Element.ElementType SYSTEM_JOB_EXEC_NO_WAIT
public static final Element.ElementType SYSTEM_NOTIFICATION
public static final Element.ElementType USER_TASK
public static final Element.ElementType EVENT_GATEWAY
public static final Element.ElementType INTERMEDIATE_CATCH_SIGNAL_EVENT
public static final Element.ElementType INTERMEDIATE_CATCH_TIMER_EVENT
public static final Element.ElementType TERMINATE_END
public static final Element.ElementType START
public static final Element.ElementType END
public static Element.ElementType[] values()
for (Element.ElementType c : Element.ElementType.values()) System.out.println(c);
public static Element.ElementType 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<i>Copyright (c) 2020, SAS Institute Inc., Cary, NC, USA</i>