Package org.azd.enums
Enum Class ReleaseTriggerType
- All Implemented Interfaces:
Serializable
,Comparable<ReleaseTriggerType>
,Constable
None
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionArtifact based release trigger.Container image based release trigger.Package based release trigger.Pull request based release trigger.Schedule based release trigger.Source repository based release trigger.Release trigger type not set. -
Method Summary
Modifier and TypeMethodDescriptionstatic ReleaseTriggerType
Returns the enum constant of this class with the specified name.static ReleaseTriggerType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ARTIFACTSOURCE
Artifact based release trigger. -
CONTAINERIMAGE
Container image based release trigger. -
PACKAGE
Package based release trigger. -
PULLREQUEST
Pull request based release trigger. -
SCHEDULE
Schedule based release trigger. -
SOURCEREPO
Source repository based release trigger. -
UNDEFINED
Release trigger type not set.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-