Enum PseudoStateKind
- All Implemented Interfaces:
Serializable
,Comparable<PseudoStateKind>
,java.lang.constant.Constable
Defines enumeration of a
PseudoState
kind. This is used within a
transitive states indicating its kind.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionChoice kindEnd or terminate kindEntrypoint kindExitpoint kindFork kindHistory deep kindHistory shallow kindIndicates an initial kind.Join kindJunction kind -
Method Summary
Modifier and TypeMethodDescriptionstatic PseudoStateKind
Returns the enum constant of this type with the specified name.static PseudoStateKind[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
INITIAL
Indicates an initial kind. -
END
End or terminate kind -
CHOICE
Choice kind -
JUNCTION
Junction kind -
HISTORY_DEEP
History deep kind -
HISTORY_SHALLOW
History shallow kind -
FORK
Fork kind -
JOIN
Join kind -
ENTRY
Entrypoint kind -
EXIT
Exitpoint kind
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-