public enum StorageService extends Enum<StorageService>
Enum Constant and Description |
---|
BLOB
Blob service.
|
FILE
File service.
|
QUEUE
Queue Service.
|
TABLE
Table Service.
|
Modifier and Type | Method and Description |
---|---|
static StorageService |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StorageService[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StorageService BLOB
public static final StorageService FILE
public static final StorageService QUEUE
public static final StorageService TABLE
public static StorageService[] values()
for (StorageService c : StorageService.values()) System.out.println(c);
public static StorageService 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 nullCopyright © 2019. All rights reserved.