public static enum DataCenterInfo.Name extends Enum<DataCenterInfo.Name>
| Modifier and Type | Method and Description | 
|---|---|
| static DataCenterInfo.Name | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static DataCenterInfo.Name[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final DataCenterInfo.Name Netflix
public static final DataCenterInfo.Name Amazon
public static final DataCenterInfo.Name MyOwn
public static DataCenterInfo.Name[] values()
for (DataCenterInfo.Name c : DataCenterInfo.Name.values()) System.out.println(c);
public static DataCenterInfo.Name 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 null