public enum StorageAccountTypes extends Enum<StorageAccountTypes>
| Enum Constant and Description |
|---|
PREMIUM_LRS
Enum value Premium_LRS.
|
STANDARD_LRS
Enum value Standard_LRS.
|
| Modifier and Type | Method and Description |
|---|---|
static StorageAccountTypes |
fromString(String value)
Parses a serialized value to a StorageAccountTypes instance.
|
String |
toString() |
static StorageAccountTypes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StorageAccountTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StorageAccountTypes STANDARD_LRS
public static final StorageAccountTypes PREMIUM_LRS
public static StorageAccountTypes[] values()
for (StorageAccountTypes c : StorageAccountTypes.values()) System.out.println(c);
public static StorageAccountTypes 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 StorageAccountTypes fromString(String value)
value - the serialized value to parse.public String toString()
toString in class Enum<StorageAccountTypes>/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*/