Enum Class BitBucketPPRPipelineLibrarySCMAction.Classification
java.lang.Object
java.lang.Enum<BitBucketPPRPipelineLibrarySCMAction.Classification>
io.jenkins.plugins.bitbucketpushandpullrequest.action.BitBucketPPRPipelineLibrarySCMAction.Classification
- All Implemented Interfaces:
Serializable,Comparable<BitBucketPPRPipelineLibrarySCMAction.Classification>,Constable
- Enclosing class:
- BitBucketPPRPipelineLibrarySCMAction
public static enum BitBucketPPRPipelineLibrarySCMAction.Classification
extends Enum<BitBucketPPRPipelineLibrarySCMAction.Classification>
Per-build verdict on whether a queried
GitSCM was exclusively a Pipeline shared
library in this build, also a real (non-library) checkout, or simply not seen.
The probe uses this to walk the recent-builds window: an UNKNOWN verdict means
"this build has nothing to say, keep scanning"; the other two are authoritative.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionSCM matches a non-library remote, or is multi-remote (never a library by construction).SCM matches a library remote and does NOT also match any non-library remote.This build has not seen any of the SCM's URIs in either role. -
Method Summary
Modifier and TypeMethodDescriptionReturns 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
-
ONLY_LIBRARY
SCM matches a library remote and does NOT also match any non-library remote. -
NON_LIBRARY_OR_MIXED
SCM matches a non-library remote, or is multi-remote (never a library by construction). -
UNKNOWN
This build has not seen any of the SCM's URIs in either role.
-
-
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
-