public static enum ImageInfo.Status extends Enum<ImageInfo.Status>
READY
.Enum Constant and Description |
---|
FAILED
Image creation failed.
|
PENDING
Image creation is pending.
|
READY
Image has been created and is ready for use.
|
Modifier and Type | Method and Description |
---|---|
static ImageInfo.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ImageInfo.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImageInfo.Status FAILED
public static final ImageInfo.Status PENDING
public static final ImageInfo.Status READY
public static ImageInfo.Status[] values()
for (ImageInfo.Status c : ImageInfo.Status.values()) System.out.println(c);
public static ImageInfo.Status 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 © 2019 Google LLC. All rights reserved.