Enum ArgumentsAction.NotStoredReason
java.lang.Object
java.lang.Enum<ArgumentsAction.NotStoredReason>
org.jenkinsci.plugins.workflow.actions.ArgumentsAction.NotStoredReason
- All Implemented Interfaces:
Serializable
,Comparable<ArgumentsAction.NotStoredReason>
- Enclosing class:
- ArgumentsAction
Used as a placeholder marker for
Step
arguments not stored for various reasons.-
Enum Constant Summary
Enum ConstantDescriptionDenotes an unsafe value that cannot be stored/displayed due to sensitive info.Denotes an object that is too big to retain, such as strings exceedingArgumentsAction.MAX_RETAINED_LENGTH
For when we can't actually serialize the arguments. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this type with the specified name.static ArgumentsAction.NotStoredReason[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
MASKED_VALUE
Denotes an unsafe value that cannot be stored/displayed due to sensitive info. -
OVERSIZE_VALUE
Denotes an object that is too big to retain, such as strings exceedingArgumentsAction.MAX_RETAINED_LENGTH
-
UNSERIALIZABLE
For when we can't actually serialize the arguments.
-
-
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
-