Class InvisibleWhen
java.lang.Object
org.jenkinsci.plugins.pipeline.modeldefinition.ast.ModelASTElement
org.jenkinsci.plugins.pipeline.modeldefinition.ast.ModelASTWhen
org.jenkinsci.plugins.pipeline.modeldefinition.ast.InvisibleWhen
- All Implemented Interfaces:
ModelASTMarkerInterface
when
container generated when adding invisible global when
conditions to a stage, containing the new
invisible conditions and any explicitly defined ones. When created with existing conditions, the existing when
container is stored for use as well. This is used as a marker to avoid validation, JSON/Groovy generation, etc for
the generated container.-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Removes the source location value from this element.void
setOriginalWhen
(ModelASTWhen originalWhen) toGroovy()
Translates this element and any children it may have into Pipeline Config-formatted Groovy, without any indentations.toJSON()
Translates this element and any children it may have into JSON conforming to the schema.toString()
void
validate
(ModelValidator validator) Called to do whatever validation is necessary for this element.Methods inherited from class org.jenkinsci.plugins.pipeline.modeldefinition.ast.ModelASTWhen
getConditions, setBeforeAgent, setBeforeInput, setBeforeOptions, setConditions
Methods inherited from class org.jenkinsci.plugins.pipeline.modeldefinition.ast.ModelASTElement
equals, hashCode, nullIfEmpty, removeSourceLocationsFrom, removeSourceLocationsFrom, removeSourceLocationsFrom, removeSourceLocationsFrom, setSourceLocation, toGroovy, toGroovy, toGroovyArgList, toGroovyArgList, toGroovyBlock, toGroovyBlock, toGroovyBlock, toGroovyCheckEmpty, toJSON, toJSONArray, toJSONArray, toJSONCheckEmpty, toJSONObject, validate, validate, validate
-
Constructor Details
-
InvisibleWhen
public InvisibleWhen()
-
-
Method Details
-
setOriginalWhen
-
getSourceLocation
- Overrides:
getSourceLocation
in classModelASTElement
-
getBeforeAgent
- Overrides:
getBeforeAgent
in classModelASTWhen
-
getBeforeInput
- Overrides:
getBeforeInput
in classModelASTWhen
-
getBeforeOptions
- Overrides:
getBeforeOptions
in classModelASTWhen
-
toJSON
Description copied from class:ModelASTElement
Translates this element and any children it may have into JSON conforming to the schema.- Specified by:
toJSON
in interfaceModelASTMarkerInterface
- Overrides:
toJSON
in classModelASTWhen
- Returns:
- Generally a
JSONObject
orJSONArray
but for some leaf nodes, may be aString
or other simple class.
-
toGroovy
Description copied from class:ModelASTElement
Translates this element and any children it may have into Pipeline Config-formatted Groovy, without any indentations.- Specified by:
toGroovy
in interfaceModelASTMarkerInterface
- Overrides:
toGroovy
in classModelASTWhen
- Returns:
- A simple
String
of Groovy code for this element and its children.
-
removeSourceLocation
public void removeSourceLocation()Description copied from class:ModelASTElement
Removes the source location value from this element.- Specified by:
removeSourceLocation
in interfaceModelASTMarkerInterface
- Overrides:
removeSourceLocation
in classModelASTWhen
-
toString
Description copied from class:ModelASTElement
- Overrides:
toString
in classModelASTWhen
-
validate
Description copied from class:ModelASTElement
Called to do whatever validation is necessary for this element. Overridden in most cases.- Specified by:
validate
in interfaceModelASTMarkerInterface
- Overrides:
validate
in classModelASTWhen
- Parameters:
validator
- AModelValidator
to use for more complicated validation.
-