Class StorageService
- java.lang.Object
-
- com.azure.core.util.ExpandableStringEnum<StorageService>
-
- com.azure.resourcemanager.storage.models.StorageService
-
public class StorageService extends com.azure.core.util.ExpandableStringEnum<StorageService>
Azure storage service types.
-
-
Field Summary
Fields Modifier and Type Field Description static StorageServiceBLOBStatic value Blob for StorageService.static StorageServiceFILEStatic value File for StorageService.static StorageServiceQUEUEStatic value Queue for StorageService.static StorageServiceTABLEStatic value Table for StorageService.
-
Constructor Summary
Constructors Constructor Description StorageService()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static StorageServicefromString(String name)Creates or finds a service service type based on its name.static Collection<StorageService>values()
-
-
-
Field Detail
-
BLOB
public static final StorageService BLOB
Static value Blob for StorageService.
-
TABLE
public static final StorageService TABLE
Static value Table for StorageService.
-
QUEUE
public static final StorageService QUEUE
Static value Queue for StorageService.
-
FILE
public static final StorageService FILE
Static value File for StorageService.
-
-
Method Detail
-
fromString
public static StorageService fromString(String name)
Creates or finds a service service type based on its name.- Parameters:
name- a name to look for- Returns:
- an StorageService
-
values
public static Collection<StorageService> values()
- Returns:
- known storage service types.
-
-