LeaseStatus Enum

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

public enum LeaseStatus

Specifies the lease status of a blob.

You can check the lease status of a blob to determine whether it currently has an active lease (locked for exclusive-write access), or whether it is available for exclusive-write access.

Fields

LOCKED

Specifies the blob is locked for exclusive-write access.

UNSPECIFIED

Specifies the lease status is not specified.

Inherited Members

com.microsoft.azure.storage.blob._lease_status_1a3ec0ca4d0accf678f33cc078b453bcc9

Methods

parse(final String typeString)

protected static LeaseStatus parse(final String typeString)

Parses a lease status from the given string.

Parameters

typeString
final String
A String which contains the lease status to parse.

Returns

A LeaseStatus value that represents the lease status.

Applies to