public enum FlowBoundary extends Enum<FlowBoundary> implements FlowElementAttribute
Enum Constant and Description |
---|
DEFAULT
The element must not become any flow boundaries.
|
SHUFFLE
The element must become a shuffle boundary.
|
STAGE
The element must become a stage boundary.
|
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static FlowBoundary |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FlowBoundary[] |
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, valueOf
getDeclaringClass
public static final FlowBoundary STAGE
public static final FlowBoundary SHUFFLE
public static final FlowBoundary DEFAULT
public static FlowBoundary[] values()
for (FlowBoundary c : FlowBoundary.values()) System.out.println(c);
public static FlowBoundary 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 String toString()
toString
in class Enum<FlowBoundary>
Copyright © 2011–2019 Asakusa Framework Team. All rights reserved.