private static enum RootProcedureState.State extends Enum<RootProcedureState.State>
| Enum Constant and Description | 
|---|
| FAILED | 
| ROLLINGBACK | 
| RUNNING | 
| Modifier and Type | Method and Description | 
|---|---|
| static RootProcedureState.State | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static RootProcedureState.State[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final RootProcedureState.State RUNNING
public static final RootProcedureState.State FAILED
public static final RootProcedureState.State ROLLINGBACK
public static RootProcedureState.State[] values()
for (RootProcedureState.State c : RootProcedureState.State.values()) System.out.println(c);
public static RootProcedureState.State 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.