Package org.openstack4j.model.manila
Enum Share.Status
- java.lang.Object
-
- java.lang.Enum<Share.Status>
-
- org.openstack4j.model.manila.Share.Status
-
- All Implemented Interfaces:
Serializable,Comparable<Share.Status>
- Enclosing interface:
- Share
public static enum Share.Status extends Enum<Share.Status>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AVAILABLECREATINGDELETINGERRORERROR_DELETINGEXTENDINGEXTENDING_ERRORMANAGE_STARTINGSHRINKINGSHRINKING_ERRORSHRINKING_POSSIBLE_DATA_LOSS_ERRORUNMANAGE_ERRORUNMANAGE_STARTINGUNMANAGED
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Stringvalue()static Share.Statusvalue(String v)static Share.StatusvalueOf(String name)Returns the enum constant of this type with the specified name.static Share.Status[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CREATING
public static final Share.Status CREATING
-
DELETING
public static final Share.Status DELETING
-
ERROR
public static final Share.Status ERROR
-
ERROR_DELETING
public static final Share.Status ERROR_DELETING
-
AVAILABLE
public static final Share.Status AVAILABLE
-
MANAGE_STARTING
public static final Share.Status MANAGE_STARTING
-
UNMANAGE_STARTING
public static final Share.Status UNMANAGE_STARTING
-
UNMANAGE_ERROR
public static final Share.Status UNMANAGE_ERROR
-
UNMANAGED
public static final Share.Status UNMANAGED
-
EXTENDING
public static final Share.Status EXTENDING
-
EXTENDING_ERROR
public static final Share.Status EXTENDING_ERROR
-
SHRINKING
public static final Share.Status SHRINKING
-
SHRINKING_ERROR
public static final Share.Status SHRINKING_ERROR
-
SHRINKING_POSSIBLE_DATA_LOSS_ERROR
public static final Share.Status SHRINKING_POSSIBLE_DATA_LOSS_ERROR
-
-
Method Detail
-
values
public static Share.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 (Share.Status c : Share.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 Share.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
-
value
public static Share.Status value(String v)
-
value
public String value()
-
-