public enum StorageType extends Enum<StorageType>
| Enum Constant and Description |
|---|
LOCAL_NODE
Enum value LocalNode.
|
NETWORK_FILE_SYSTEM
Enum value NetworkFileSystem.
|
| Modifier and Type | Method and Description |
|---|---|
static StorageType |
fromString(String value)
Parses a serialized value to a StorageType instance.
|
String |
toString() |
static StorageType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StorageType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StorageType LOCAL_NODE
public static final StorageType NETWORK_FILE_SYSTEM
public static StorageType[] values()
public static StorageType 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 StorageType fromString(String value)
value - the serialized value to parse.public String toString()
toString in class Enum<StorageType>Copyright © 2021 Microsoft Corporation. All rights reserved.