@InterfaceAudience.Public @InterfaceStability.Unstable public enum ContainerSubState extends Enum<ContainerSubState>
| Enum Constant and Description | 
|---|
| COMPLETING | 
| DONE | 
| PAUSED | 
| RUNNING | 
| SCHEDULED | 
| Modifier and Type | Method and Description | 
|---|---|
| static ContainerSubState | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static ContainerSubState[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final ContainerSubState SCHEDULED
public static final ContainerSubState RUNNING
public static final ContainerSubState PAUSED
public static final ContainerSubState COMPLETING
public static final ContainerSubState DONE
public static ContainerSubState[] values()
for (ContainerSubState c : ContainerSubState.values()) System.out.println(c);
public static ContainerSubState 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 © 2008–2023 Apache Software Foundation. All rights reserved.