BlobType Enum

  • java.lang.Object
    • java.lang.Enum<BlobType>
      • com.microsoft.azure.storage.blob.BlobType

public enum BlobType

Specifies the type of a blob.

Fields

BLOCK_BLOB

Specifies the blob is a block blob.

PAGE_BLOB

Specifies the blob is a page blob.

UNSPECIFIED

Specifies the blob type is not specified.

Inherited Members

com.microsoft.azure.storage.blob._blob_type_1acda654fcdf3617c28b1c47ef11ff43f7

Methods

parse(final String typeString)

protected static BlobType parse(final String typeString)

Returns the enum value representing the blob type for the specified string.

Parameters

typeString
final String
A String that represents a blob type, such as "blockblob" or "pageblob".

Returns

A BlobType value corresponding to the string specified by typeString.

Applies to