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