public enum FlowElementKind extends Enum<FlowElementKind>
FlowElement
.Enum Constant and Description |
---|
FLOW_COMPONENT
A flow-part.
|
INPUT
A flow input.
|
OPERATOR
An operator.
|
OUTPUT
A flow output.
|
PSEUD
A pseudo-element.
|
Modifier and Type | Method and Description |
---|---|
static FlowElementKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FlowElementKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FlowElementKind INPUT
FlowElement.getDescription()
must returns InputDescription
.public static final FlowElementKind OUTPUT
FlowElement.getDescription()
must returns OutputDescription
.public static final FlowElementKind OPERATOR
FlowElement.getDescription()
must returns OperatorDescription
.public static final FlowElementKind FLOW_COMPONENT
FlowElement.getDescription()
must returns FlowPartDescription
.public static final FlowElementKind PSEUD
public static FlowElementKind[] values()
for (FlowElementKind c : FlowElementKind.values()) System.out.println(c);
public static FlowElementKind 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 nullCopyright © 2011–2019 Asakusa Framework Team. All rights reserved.