Class Kind
- java.lang.Object
-
- com.azure.core.util.ExpandableStringEnum<Kind>
-
- com.azure.resourcemanager.storage.models.Kind
-
public final class Kind extends com.azure.core.util.ExpandableStringEnum<Kind>
Defines values for Kind.
-
-
Field Summary
Fields Modifier and Type Field Description static KindBLOB_STORAGEStatic value BlobStorage for Kind.static KindBLOCK_BLOB_STORAGEStatic value BlockBlobStorage for Kind.static KindFILE_STORAGEStatic value FileStorage for Kind.static KindSTORAGEStatic value Storage for Kind.static KindSTORAGE_V2Static value StorageV2 for Kind.
-
Constructor Summary
Constructors Constructor Description Kind()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static KindfromString(String name)Creates or finds a Kind from its string representation.static Collection<Kind>values()
-
-
-
Field Detail
-
STORAGE
public static final Kind STORAGE
Static value Storage for Kind.
-
STORAGE_V2
public static final Kind STORAGE_V2
Static value StorageV2 for Kind.
-
BLOB_STORAGE
public static final Kind BLOB_STORAGE
Static value BlobStorage for Kind.
-
FILE_STORAGE
public static final Kind FILE_STORAGE
Static value FileStorage for Kind.
-
BLOCK_BLOB_STORAGE
public static final Kind BLOCK_BLOB_STORAGE
Static value BlockBlobStorage for Kind.
-
-
Method Detail
-
fromString
public static Kind fromString(String name)
Creates or finds a Kind from its string representation.- Parameters:
name- a name to look for.- Returns:
- the corresponding Kind.
-
values
public static Collection<Kind> values()
- Returns:
- known Kind values.
-
-