public enum LocationScope extends Enum<LocationScope>
Enum Constant and Description |
---|
HOST |
NETWORK |
PROVIDER |
RACK |
REGION |
ZONE |
Modifier and Type | Method and Description |
---|---|
static LocationScope |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LocationScope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LocationScope PROVIDER
public static final LocationScope REGION
public static final LocationScope ZONE
public static final LocationScope NETWORK
public static final LocationScope RACK
public static final LocationScope HOST
public static LocationScope[] values()
for (LocationScope c : LocationScope.values()) System.out.println(c);
public static LocationScope valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is nullCopyright © 2009-2012 jclouds. All Rights Reserved.