public enum AzureStorageState extends Enum<AzureStorageState>
Enum Constant and Description |
---|
INVALID_CREDENTIALS
Enum value InvalidCredentials.
|
INVALID_SHARE
Enum value InvalidShare.
|
OK
Enum value Ok.
|
Modifier and Type | Method and Description |
---|---|
static AzureStorageState |
fromString(String value)
Parses a serialized value to a AzureStorageState instance.
|
String |
toString() |
static AzureStorageState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AzureStorageState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AzureStorageState OK
public static final AzureStorageState INVALID_CREDENTIALS
public static final AzureStorageState INVALID_SHARE
public static AzureStorageState[] values()
for (AzureStorageState c : AzureStorageState.values()) System.out.println(c);
public static AzureStorageState 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 nullpublic static AzureStorageState fromString(String value)
value
- the serialized value to parse.public String toString()
toString
in class Enum<AzureStorageState>
Copyright © 2019. All rights reserved.