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