org.soyatec.windowsazure.blob
Enum LeaseMode

java.lang.Object
  extended by java.lang.Enum<LeaseMode>
      extended by org.soyatec.windowsazure.blob.LeaseMode
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<LeaseMode>

public enum LeaseMode
extends java.lang.Enum<LeaseMode>

Represent lease blob operation mode. The Lease Blob operation can be called in one of four modes: Acquire, to request a new lease. Renew, to renew an existing lease. Release, to free the lease if it is no longer needed so that another client may immediately acquire a lease against the blob. Break, to end the lease but ensure that another client cannot acquire a new lease until the current lease period has expired.


Enum Constant Summary
Acquire
           
Break
           
Release
           
Renew
           
 
Method Summary
 java.lang.String getLiteral()
          Get the literal of the data type
static LeaseMode valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static LeaseMode[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

Acquire

public static final LeaseMode Acquire

Renew

public static final LeaseMode Renew

Release

public static final LeaseMode Release

Break

public static final LeaseMode Break
Method Detail

values

public static final LeaseMode[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(LeaseMode c : LeaseMode.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static LeaseMode valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name

getLiteral

public java.lang.String getLiteral()
Get the literal of the data type

Returns:
the the literal of the data type string