java.io.Serializable, java.lang.Comparable<ContainerState>@Public @Stable public enum ContainerState extends java.lang.Enum<ContainerState>
State of a Container.
| Enum Constant | Description |
|---|---|
COMPLETE |
Completed container
|
NEW |
New container
|
RUNNING |
Running container
|
| Modifier and Type | Method | Description |
|---|---|---|
static ContainerState |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static ContainerState[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ContainerState NEW
public static final ContainerState RUNNING
public static final ContainerState COMPLETE
public static ContainerState[] values()
for (ContainerState c : ContainerState.values()) System.out.println(c);
public static ContainerState valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2008–2025 Apache Software Foundation. All rights reserved.