public enum DataCenterStatus extends Enum<DataCenterStatus>
Enum Constant and Description |
---|
CONTEND |
MAINTENANCE |
NOT_OPERATIONAL |
PROBLEMATIC |
UNINITIALIZED |
UP |
Modifier and Type | Method and Description |
---|---|
static DataCenterStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataCenterStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataCenterStatus UNINITIALIZED
public static final DataCenterStatus UP
public static final DataCenterStatus MAINTENANCE
public static final DataCenterStatus NOT_OPERATIONAL
public static final DataCenterStatus PROBLEMATIC
public static final DataCenterStatus CONTEND
public static DataCenterStatus[] values()
for (DataCenterStatus c : DataCenterStatus.values()) System.out.println(c);
public static DataCenterStatus 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 © 2016. All rights reserved.