public static enum SnapshotInfo.Status extends Enum<SnapshotInfo.Status>
READY
.Enum Constant and Description |
---|
CREATING
The snapshot is being created.
|
DELETING
The snapshot is being deleted.
|
FAILED
Snapshot's creation failed.
|
READY
Snapshot has been successfully created.
|
UPLOADING
Snapshot is being uploaded.
|
Modifier and Type | Method and Description |
---|---|
static SnapshotInfo.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SnapshotInfo.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SnapshotInfo.Status CREATING
public static final SnapshotInfo.Status DELETING
public static final SnapshotInfo.Status FAILED
public static final SnapshotInfo.Status READY
public static final SnapshotInfo.Status UPLOADING
public static SnapshotInfo.Status[] values()
for (SnapshotInfo.Status c : SnapshotInfo.Status.values()) System.out.println(c);
public static SnapshotInfo.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.