BlobType Enum

  • java.lang.Object
    • java.lang.Enum
      • com.azure.storage.blob.models.BlobType

public enum BlobType
extends Enum<BlobType>

Defines values for BlobType.

Fields

APPEND_BLOB

Enum value AppendBlob.

BLOCK_BLOB

Enum value BlockBlob.

PAGE_BLOB

Enum value PageBlob.

Methods inherited from java.lang.Enum

Methods inherited from java.lang.Object

Methods

fromString(String value)

public static BlobType fromString(String value)

Parses a serialized value to a BlobType instance.

Parameters

value
String
the serialized value to parse.

Returns

the parsed BlobType object, or null if unable to parse.

toString()

public String toString()

Returns

Overrides
java.lang.Enum.toString()

valueOf(String name)

public static BlobType valueOf(String name)

Parameters

name
String

Returns

values()

public static BlobType[] values()

Returns

Applies to