Class ModelASTNamedArgumentList
java.lang.Object
org.jenkinsci.plugins.pipeline.modeldefinition.ast.ModelASTElement
org.jenkinsci.plugins.pipeline.modeldefinition.ast.ModelASTArgumentList
org.jenkinsci.plugins.pipeline.modeldefinition.ast.ModelASTNamedArgumentList
- All Implemented Interfaces:
ModelASTMarkerInterface
Represents the named parameters for a step in a map of
ModelASTKeys and ModelASTValues.- Author:
- Kohsuke Kawaguchi, Andrew Bayer
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleancontainsKeyName(String keyName) Checks if a given key name is present.booleaninthashCode()keyForName(String keyName) voidRemoves the source location value from this element.voidsetArguments(Map<ModelASTKey, ModelASTValue> arguments) toGroovy()Translates this element and any children it may have into Pipeline Config-formatted Groovy, without any indentations.net.sf.json.JSONArraytoJSON()Translates this element and any children it may have into JSON conforming to the schema.toString()voidvalidate(ModelValidator validator) Called to do whatever validation is necessary for this element.valueForName(String keyName) 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
-
ModelASTNamedArgumentList
-
-
Method Details
-
toJSON
@NonNull public net.sf.json.JSONArray 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.
-
containsKeyName
Checks if a given key name is present.- Parameters:
keyName- The name of a key to check for.- Returns:
- True if a
ModelASTKeywith that name is present in the map.
-
keyForName
-
valueForName
-
validate
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
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
-
getArguments
-
setArguments
-
argListToMap
- Specified by:
argListToMapin classModelASTArgumentList
-
toString
Description copied from class:ModelASTElement- Overrides:
toStringin classModelASTArgumentList
-
equals
Description copied from class:ModelASTElement- Overrides:
equalsin classModelASTArgumentList
-
hashCode
public int hashCode()Description copied from class:ModelASTElement- Overrides:
hashCodein classModelASTElement
-