Class ModelASTPipelineDef
java.lang.Object
org.jenkinsci.plugins.pipeline.modeldefinition.ast.ModelASTElement
org.jenkinsci.plugins.pipeline.modeldefinition.ast.ModelASTPipelineDef
- All Implemented Interfaces:
ModelASTMarkerInterface
Represents the parsed pipeline definition for visual pipeline editor. Corresponds to
Root
.- Author:
- Kohsuke Kawaguchi, Andrew Bayer
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
getAgent()
getTools()
int
hashCode()
void
Removes the source location value from this element.void
setAgent
(ModelASTAgent agent) void
setEnvironment
(ModelASTEnvironment environment) void
setLibraries
(ModelASTLibraries libraries) void
setOptions
(ModelASTOptions options) void
setParameters
(ModelASTBuildParameters parameters) void
setPostBuild
(ModelASTPostBuild postBuild) void
setStages
(ModelASTStages stages) void
setTools
(ModelASTTools tools) void
setTriggers
(ModelASTTriggers triggers) toGroovy()
Translates this element and any children it may have into Pipeline Config-formatted Groovy, without any indentations.static String
toIndentedGroovy
(String orig) net.sf.json.JSONObject
toJSON()
Translates this element and any children it may have into JSON conforming to the schema.Helper method to pretty-print the generated Groovy from this and its children.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.ModelASTElement
getSourceLocation, nullIfEmpty, removeSourceLocationsFrom, removeSourceLocationsFrom, removeSourceLocationsFrom, removeSourceLocationsFrom, setSourceLocation, toGroovy, toGroovy, toGroovyArgList, toGroovyArgList, toGroovyBlock, toGroovyBlock, toGroovyBlock, toGroovyCheckEmpty, toJSON, toJSONArray, toJSONArray, toJSONCheckEmpty, toJSONObject, validate, validate, validate
-
Constructor Details
-
ModelASTPipelineDef
-
-
Method Details
-
toJSON
@NonNull public net.sf.json.JSONObject 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
- Specified by:
toJSON
in classModelASTElement
- Returns:
- Generally a
JSONObject
orJSONArray
but for some leaf nodes, may be aString
or other simple class.
-
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 classModelASTElement
- Parameters:
validator
- AModelValidator
to use for more complicated validation.
-
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
- Specified by:
toGroovy
in classModelASTElement
- Returns:
- A simple
String
of Groovy code for this element and its children.
-
toPrettyGroovy
Helper method to pretty-print the generated Groovy from this and its children.- Returns:
- An indented string of Groovy, suitable for use in a Jenkinsfile.
-
toIndentedGroovy
-
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 classModelASTElement
-
getStages
-
setStages
-
getLibraries
-
setLibraries
-
getPostBuild
-
setPostBuild
-
getEnvironment
-
setEnvironment
-
getAgent
-
setAgent
-
getTools
-
setTools
-
getOptions
-
setOptions
-
getParameters
-
setParameters
-
getTriggers
-
setTriggers
-
toString
Description copied from class:ModelASTElement
- Overrides:
toString
in classModelASTElement
-
equals
Description copied from class:ModelASTElement
- Overrides:
equals
in classModelASTElement
-
hashCode
public int hashCode()Description copied from class:ModelASTElement
- Overrides:
hashCode
in classModelASTElement
-