Package org.openstack4j.api.client
Enum CloudProvider
- java.lang.Object
-
- java.lang.Enum<CloudProvider>
-
- org.openstack4j.api.client.CloudProvider
-
- All Implemented Interfaces:
Serializable,Comparable<CloudProvider>
public enum CloudProvider extends Enum<CloudProvider>
Cloud Provider helps OpenStack4j handle provider specific changes or workarounds. Users who know the provider they are authenticating with should set this for more reliability
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CloudProvidervalueOf(String name)Returns the enum constant of this type with the specified name.static CloudProvider[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNKNOWN
public static final CloudProvider UNKNOWN
-
RACKSPACE
public static final CloudProvider RACKSPACE
-
HPCLOUD
public static final CloudProvider HPCLOUD
-
-
Method Detail
-
values
public static CloudProvider[] 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 (CloudProvider c : CloudProvider.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CloudProvider valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-