Package jenkins.branch
Enum NoTriggerMultiBranchQueueDecisionHandler.SuppressionStrategy
java.lang.Object
java.lang.Enum<NoTriggerMultiBranchQueueDecisionHandler.SuppressionStrategy>
jenkins.branch.NoTriggerMultiBranchQueueDecisionHandler.SuppressionStrategy
- All Implemented Interfaces:
Serializable
,Comparable<NoTriggerMultiBranchQueueDecisionHandler.SuppressionStrategy>
- Enclosing class:
- NoTriggerMultiBranchQueueDecisionHandler
public static enum NoTriggerMultiBranchQueueDecisionHandler.SuppressionStrategy
extends Enum<NoTriggerMultiBranchQueueDecisionHandler.SuppressionStrategy>
Strategy which determines which builds should be suppressed.
-
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 type with the specified name.values()
Returns an array containing the constants of this enum type, 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 type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-
getDisplayName
-
shouldSuppress
-