Enum EnvironmentHealthAttribute
- java.lang.Object
-
- java.lang.Enum<EnvironmentHealthAttribute>
-
- com.amazonaws.services.elasticbeanstalk.model.EnvironmentHealthAttribute
-
- All Implemented Interfaces:
Serializable
,Comparable<EnvironmentHealthAttribute>
public enum EnvironmentHealthAttribute extends Enum<EnvironmentHealthAttribute>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description All
ApplicationMetrics
Causes
Color
HealthStatus
InstancesHealth
RefreshedAt
Status
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static EnvironmentHealthAttribute
fromValue(String value)
Use this in place of valueOf.String
toString()
static EnvironmentHealthAttribute
valueOf(String name)
Returns the enum constant of this type with the specified name.static EnvironmentHealthAttribute[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Status
public static final EnvironmentHealthAttribute Status
-
Color
public static final EnvironmentHealthAttribute Color
-
Causes
public static final EnvironmentHealthAttribute Causes
-
ApplicationMetrics
public static final EnvironmentHealthAttribute ApplicationMetrics
-
InstancesHealth
public static final EnvironmentHealthAttribute InstancesHealth
-
All
public static final EnvironmentHealthAttribute All
-
HealthStatus
public static final EnvironmentHealthAttribute HealthStatus
-
RefreshedAt
public static final EnvironmentHealthAttribute RefreshedAt
-
-
Method Detail
-
values
public static EnvironmentHealthAttribute[] 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 (EnvironmentHealthAttribute c : EnvironmentHealthAttribute.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EnvironmentHealthAttribute 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
-
toString
public String toString()
- Overrides:
toString
in classEnum<EnvironmentHealthAttribute>
-
fromValue
public static EnvironmentHealthAttribute fromValue(String value)
Use this in place of valueOf.- Parameters:
value
- real value- Returns:
- EnvironmentHealthAttribute corresponding to the value
-
-