Class ModelASTMethodCall
- java.lang.Object
-
- org.jenkinsci.plugins.pipeline.modeldefinition.ast.ModelASTElement
-
- org.jenkinsci.plugins.pipeline.modeldefinition.ast.ModelASTMethodCall
-
- All Implemented Interfaces:
ModelASTMarkerInterface,ModelASTMethodArg
- Direct Known Subclasses:
ModelASTBuildParameter,ModelASTOption,ModelASTTrigger
public class ModelASTMethodCall extends ModelASTElement implements ModelASTMethodArg
A representation of a method call, including its name and a list ofModelASTMethodArgs. This is used for things like job properties, triggers and parameter definitions, allowing parsing and validation of the arguments in case they themselves are method calls.- Author:
- Andrew Bayer
-
-
Constructor Summary
Constructors Constructor Description ModelASTMethodCall(Object sourceLocation)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description booleanequals(Object o)List<ModelASTMethodArg>getArgs()static Map<String,String>getBlockedSteps()Deprecated.since 1.2-beta-4StringgetName()inthashCode()voidremoveSourceLocation()Removes the source location value from this element.voidsetArgs(List<ModelASTMethodArg> args)voidsetName(String name)StringtoGroovy()Translates this element and any children it may have into Pipeline Config-formatted Groovy, without any indentations.net.sf.json.JSONObjecttoJSON()Translates this element and any children it may have into JSON conforming to the schema.StringtoString()voidvalidate(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 Detail
-
ModelASTMethodCall
public ModelASTMethodCall(Object sourceLocation)
-
-
Method Detail
-
getBlockedSteps
@Deprecated @Restricted(org.kohsuke.accmod.restrictions.NoExternalUse.class) public static Map<String,String> getBlockedSteps()
Deprecated.since 1.2-beta-4Useorg.jenkinsci.plugins.pipeline.modeldefinition.validator.BlockedStepsAndMethodCalls.blockedInMethodCalls()instead.
-
toJSON
@NonNull public net.sf.json.JSONObject toJSON()
Description copied from class:ModelASTElementTranslates this element and any children it may have into JSON conforming to the schema.- Specified by:
toJSONin interfaceModelASTMarkerInterface- Specified by:
toJSONin classModelASTElement- Returns:
- Generally a
JSONObjectorJSONArraybut for some leaf nodes, may be aStringor other simple class.
-
validate
public void validate(@NonNull ModelValidator validator)Description copied from class:ModelASTElementCalled to do whatever validation is necessary for this element. Overridden in most cases.- Specified by:
validatein interfaceModelASTMarkerInterface- Overrides:
validatein classModelASTElement- Parameters:
validator- AModelValidatorto use for more complicated validation.
-
toGroovy
@NonNull public String toGroovy()
Description copied from class:ModelASTElementTranslates this element and any children it may have into Pipeline Config-formatted Groovy, without any indentations.- Specified by:
toGroovyin interfaceModelASTMarkerInterface- Specified by:
toGroovyin classModelASTElement- Returns:
- A simple
Stringof Groovy code for this element and its children.
-
removeSourceLocation
public void removeSourceLocation()
Description copied from class:ModelASTElementRemoves the source location value from this element.- Specified by:
removeSourceLocationin interfaceModelASTMarkerInterface- Overrides:
removeSourceLocationin classModelASTElement
-
getName
public String getName()
-
setName
public void setName(String name)
-
getArgs
public List<ModelASTMethodArg> getArgs()
-
setArgs
public void setArgs(List<ModelASTMethodArg> args)
-
toString
public String toString()
Description copied from class:ModelASTElement- Overrides:
toStringin classModelASTElement
-
equals
public boolean equals(Object o)
Description copied from class:ModelASTElement- Overrides:
equalsin classModelASTElement
-
hashCode
public int hashCode()
Description copied from class:ModelASTElement- Overrides:
hashCodein classModelASTElement
-
-