Package jenkins.branch
Enum Class NoTriggerMultiBranchQueueDecisionHandler.SuppressionStrategy
java.lang.Object
java.lang.Enum<NoTriggerMultiBranchQueueDecisionHandler.SuppressionStrategy>
jenkins.branch.NoTriggerMultiBranchQueueDecisionHandler.SuppressionStrategy
- All Implemented Interfaces:
Serializable
,Comparable<NoTriggerMultiBranchQueueDecisionHandler.SuppressionStrategy>
,Constable
- Enclosing class:
- NoTriggerMultiBranchQueueDecisionHandler
public static enum NoTriggerMultiBranchQueueDecisionHandler.SuppressionStrategy
extends Enum<NoTriggerMultiBranchQueueDecisionHandler.SuppressionStrategy>
Strategy which determines which builds should be suppressed.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionOnly builds triggered byBranchEventCause
are suppressed.Only builds triggered byBranchIndexingCause
are suppressed.All builds triggered by SCM are scheduled (nothing is suppressed). -
Method Summary
Modifier and TypeMethodDescriptionboolean
shouldSuppress
(Cause cause) Returns the enum constant of this class with the specified name.values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
INDEXING
Only builds triggered byBranchIndexingCause
are suppressed. -
EVENTS
Only builds triggered byBranchEventCause
are suppressed. -
NONE
All builds triggered by SCM are scheduled (nothing is suppressed).
-
-
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
-
getDisplayName
-
shouldSuppress
-