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