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(java.lang.String value)
Parses a serialized value to a BlobType instance.
|
java.lang.String |
toString() |
static BlobType |
valueOf(java.lang.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()
for (BlobType c : BlobType.values()) System.out.println(c);
public static BlobType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static BlobType fromString(java.lang.String value)
value
- the serialized value to parse.public java.lang.String toString()
toString
in class java.lang.Enum<BlobType>