Package com.launchdarkly.api.model
Enum PostDeploymentEventInput.EventTypeEnum
- java.lang.Object
-
- java.lang.Enum<PostDeploymentEventInput.EventTypeEnum>
-
- com.launchdarkly.api.model.PostDeploymentEventInput.EventTypeEnum
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<PostDeploymentEventInput.EventTypeEnum>
- Enclosing class:
- PostDeploymentEventInput
public static enum PostDeploymentEventInput.EventTypeEnum extends java.lang.Enum<PostDeploymentEventInput.EventTypeEnum>
The event type
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classPostDeploymentEventInput.EventTypeEnum.Adapter
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PostDeploymentEventInput.EventTypeEnumfromValue(java.lang.String value)java.lang.StringgetValue()java.lang.StringtoString()static PostDeploymentEventInput.EventTypeEnumvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static PostDeploymentEventInput.EventTypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STARTED
public static final PostDeploymentEventInput.EventTypeEnum STARTED
-
FAILED
public static final PostDeploymentEventInput.EventTypeEnum FAILED
-
FINISHED
public static final PostDeploymentEventInput.EventTypeEnum FINISHED
-
CUSTOM
public static final PostDeploymentEventInput.EventTypeEnum CUSTOM
-
-
Method Detail
-
values
public static PostDeploymentEventInput.EventTypeEnum[] 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 (PostDeploymentEventInput.EventTypeEnum c : PostDeploymentEventInput.EventTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PostDeploymentEventInput.EventTypeEnum valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getValue
public java.lang.String getValue()
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Enum<PostDeploymentEventInput.EventTypeEnum>
-
fromValue
public static PostDeploymentEventInput.EventTypeEnum fromValue(java.lang.String value)
-
-