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