libcloud
Enum DriverFactory.Provider

java.lang.Object
  extended by java.lang.Enum<DriverFactory.Provider>
      extended by libcloud.DriverFactory.Provider
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<DriverFactory.Provider>
Enclosing class:
DriverFactory

public static enum DriverFactory.Provider
extends java.lang.Enum<DriverFactory.Provider>


Enum Constant Summary
DREAMHOST
           
DUMMY
           
EC2_AP_SOUTHEAST
           
EC2_EU_WEST
           
EC2_US_EAST
           
EC2_US_WEST
           
ECP
           
EUCALYPTUS
           
GOGRID
           
IBM
           
LINODE
           
OPENNEBULA
           
RACKSPACE
           
RIMUHOSTING
           
SLICEHOST
           
SOFTLAYER
           
VOXEL
           
VPSNET
           
 
Method Summary
static DriverFactory.Provider valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static DriverFactory.Provider[] 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

DUMMY

public static final DriverFactory.Provider DUMMY

EC2_US_EAST

public static final DriverFactory.Provider EC2_US_EAST

EC2_US_WEST

public static final DriverFactory.Provider EC2_US_WEST

EC2_EU_WEST

public static final DriverFactory.Provider EC2_EU_WEST

EC2_AP_SOUTHEAST

public static final DriverFactory.Provider EC2_AP_SOUTHEAST

ECP

public static final DriverFactory.Provider ECP

GOGRID

public static final DriverFactory.Provider GOGRID

RACKSPACE

public static final DriverFactory.Provider RACKSPACE

SLICEHOST

public static final DriverFactory.Provider SLICEHOST

VPSNET

public static final DriverFactory.Provider VPSNET

LINODE

public static final DriverFactory.Provider LINODE

RIMUHOSTING

public static final DriverFactory.Provider RIMUHOSTING

VOXEL

public static final DriverFactory.Provider VOXEL

SOFTLAYER

public static final DriverFactory.Provider SOFTLAYER

EUCALYPTUS

public static final DriverFactory.Provider EUCALYPTUS

IBM

public static final DriverFactory.Provider IBM

OPENNEBULA

public static final DriverFactory.Provider OPENNEBULA

DREAMHOST

public static final DriverFactory.Provider DREAMHOST
Method Detail

values

public static DriverFactory.Provider[] 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 (DriverFactory.Provider c : DriverFactory.Provider.values())
    System.out.println(c);

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

valueOf

public static DriverFactory.Provider 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