public enum VolumeStatus extends Enum<VolumeStatus>
| Enum Constant and Description |
|---|
Attaching |
Available |
Creating |
Deleted |
Deleting |
Detaching |
Error |
Expired |
ImageProcessing |
InUse |
NotAvailable |
Recharging |
Scaling |
SnapshotProcessing |
| Modifier and Type | Method and Description |
|---|---|
static VolumeStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VolumeStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VolumeStatus Creating
public static final VolumeStatus Available
public static final VolumeStatus Attaching
public static final VolumeStatus NotAvailable
public static final VolumeStatus InUse
public static final VolumeStatus Detaching
public static final VolumeStatus Deleting
public static final VolumeStatus Deleted
public static final VolumeStatus Scaling
public static final VolumeStatus Expired
public static final VolumeStatus Error
public static final VolumeStatus SnapshotProcessing
public static final VolumeStatus ImageProcessing
public static final VolumeStatus Recharging
public static VolumeStatus[] values()
for (VolumeStatus c : VolumeStatus.values()) System.out.println(c);
public static VolumeStatus 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 © 2024. All rights reserved.