public enum ImageStatus extends Enum<ImageStatus>
| Enum Constant and Description |
|---|
AVAILABLE |
CREATEDFAILED |
CREATING |
ERROR |
NOTAVAILABLE |
| Modifier and Type | Method and Description |
|---|---|
String |
getValue() |
String |
toString() |
static ImageStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ImageStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImageStatus CREATING
public static final ImageStatus CREATEDFAILED
public static final ImageStatus AVAILABLE
public static final ImageStatus NOTAVAILABLE
public static final ImageStatus ERROR
public static ImageStatus[] values()
for (ImageStatus c : ImageStatus.values()) System.out.println(c);
public static ImageStatus 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 getValue()
public String toString()
toString in class Enum<ImageStatus>Copyright © 2026. All rights reserved.