Enum StorageService.Status
- java.lang.Object
-
- java.lang.Enum<StorageService.Status>
-
- org.jclouds.azurecompute.arm.domain.StorageService.Status
-
- All Implemented Interfaces:
Serializable
,Comparable<StorageService.Status>
- Enclosing class:
- StorageService
public static enum StorageService.Status extends Enum<StorageService.Status>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Changing
Created
Creating
Deleted
Deleting
ResolvingDns
Succeeded
UNRECOGNIZED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static StorageService.Status
fromValue(String text)
static StorageService.Status
valueOf(String name)
Returns the enum constant of this type with the specified name.static StorageService.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 StorageService.Status Creating
-
Created
public static final StorageService.Status Created
-
Deleting
public static final StorageService.Status Deleting
-
Deleted
public static final StorageService.Status Deleted
-
Changing
public static final StorageService.Status Changing
-
ResolvingDns
public static final StorageService.Status ResolvingDns
-
Succeeded
public static final StorageService.Status Succeeded
-
UNRECOGNIZED
public static final StorageService.Status UNRECOGNIZED
-
-
Method Detail
-
values
public static StorageService.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 (StorageService.Status c : StorageService.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 StorageService.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 StorageService.Status fromValue(String text)
-
-