public static enum StateMachineProcedure.Flow extends Enum<StateMachineProcedure.Flow>
| Enum Constant and Description | 
|---|
| HAS_MORE_STATE | 
| NO_MORE_STATE | 
| Modifier and Type | Method and Description | 
|---|---|
| static StateMachineProcedure.Flow | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static StateMachineProcedure.Flow[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final StateMachineProcedure.Flow HAS_MORE_STATE
public static final StateMachineProcedure.Flow NO_MORE_STATE
public static StateMachineProcedure.Flow[] values()
for (StateMachineProcedure.Flow c : StateMachineProcedure.Flow.values()) System.out.println(c);
public static StateMachineProcedure.Flow 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 © 2007–2021 The Apache Software Foundation. All rights reserved.