simplecloud.storage.providers.nirvanix
Enum NirvanixAdapter.Type

java.lang.Object
  extended by java.lang.Enum<NirvanixAdapter.Type>
      extended by simplecloud.storage.providers.nirvanix.NirvanixAdapter.Type
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<NirvanixAdapter.Type>
Enclosing class:
NirvanixAdapter

public static enum NirvanixAdapter.Type
extends java.lang.Enum<NirvanixAdapter.Type>


Enum Constant Summary
FILE
           
FOLDER
           
ITEM_TYPE
           
PAGE_NUMBER
           
PAGE_SIZE
           
 
Method Summary
static NirvanixAdapter.Type valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static NirvanixAdapter.Type[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

PAGE_NUMBER

public static final NirvanixAdapter.Type PAGE_NUMBER

PAGE_SIZE

public static final NirvanixAdapter.Type PAGE_SIZE

ITEM_TYPE

public static final NirvanixAdapter.Type ITEM_TYPE

FILE

public static final NirvanixAdapter.Type FILE

FOLDER

public static final NirvanixAdapter.Type FOLDER
Method Detail

values

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

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

valueOf

public static NirvanixAdapter.Type 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
java.lang.NullPointerException - if the argument is null