public enum NodeType extends Enum<NodeType>
| Enum Constant and Description |
|---|
end
结束
|
exclusive
排他网关(单选)
|
execute
执行节点
|
inclusive
包容网关(多选)
|
parallel
并行网关(全选)
|
start
开始
|
| Modifier and Type | Method and Description |
|---|---|
static NodeType |
codeOf(int code) |
int |
getCode() |
static NodeType |
nameOf(String name) |
static NodeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NodeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NodeType start
public static final NodeType execute
public static final NodeType inclusive
public static final NodeType exclusive
public static final NodeType parallel
public static final NodeType end
public static NodeType[] values()
for (NodeType c : NodeType.values()) System.out.println(c);
public static NodeType 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 int getCode()
public static NodeType codeOf(int code)
Copyright © 2025. All rights reserved.