Enum Volume.Status
- java.lang.Object
-
- java.lang.Enum<Volume.Status>
-
- org.openstack4j.model.storage.block.Volume.Status
-
- All Implemented Interfaces:
Serializable,Comparable<Volume.Status>
- Enclosing interface:
- Volume
public static enum Volume.Status extends Enum<Volume.Status>
The current Volume Status
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ATTACHINGAVAILABLEBACKING_UPCREATINGDELETINGDETACHINGDOWNLOADINGERRORERROR_DELETINGERROR_RESTORINGIN_USERESERVERDRESTORING_BACKUPUNRECOGNIZEDUPLOADING
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Volume.StatusfromValue(String status)StringtoString()Stringvalue()static Volume.StatusvalueOf(String name)Returns the enum constant of this type with the specified name.static Volume.Status[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AVAILABLE
public static final Volume.Status AVAILABLE
-
ATTACHING
public static final Volume.Status ATTACHING
-
BACKING_UP
public static final Volume.Status BACKING_UP
-
CREATING
public static final Volume.Status CREATING
-
DELETING
public static final Volume.Status DELETING
-
DOWNLOADING
public static final Volume.Status DOWNLOADING
-
UPLOADING
public static final Volume.Status UPLOADING
-
ERROR
public static final Volume.Status ERROR
-
ERROR_DELETING
public static final Volume.Status ERROR_DELETING
-
ERROR_RESTORING
public static final Volume.Status ERROR_RESTORING
-
IN_USE
public static final Volume.Status IN_USE
-
RESTORING_BACKUP
public static final Volume.Status RESTORING_BACKUP
-
DETACHING
public static final Volume.Status DETACHING
-
UNRECOGNIZED
public static final Volume.Status UNRECOGNIZED
-
RESERVERD
public static final Volume.Status RESERVERD
-
-
Method Detail
-
values
public static Volume.Status[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Volume.Status c : Volume.Status.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Volume.Status valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
fromValue
public static Volume.Status fromValue(String status)
-
value
public String value()
-
toString
public String toString()
- Overrides:
toStringin classEnum<Volume.Status>
-
-