Class CommonUtils
java.lang.Object
org.jenkinsci.plugins.pipeline.modeldefinition.CommonUtils
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptioncopyMapReplacingEntry(Map<String, ?> map, String oldKey, String newKey, Class<T> requiredValueType, Function<T, Object> replacer) Copy a map, replacing the entry with the specified key if it matches the specified type.static List<org.jenkinsci.plugins.workflow.graph.FlowNode>static List<org.jenkinsci.plugins.workflow.graph.FlowNode>findPossiblyUnfinishedEndNodeForCurrentStage(String stageName, org.jenkinsci.plugins.workflow.flow.FlowExecution execution) static <T> TinstantiateDescribable(Class<T> c, Map<String, ?> args) static com.google.common.base.Predicate<org.jenkinsci.plugins.workflow.graph.FlowNode>isSomewhereWithinStage(org.jenkinsci.plugins.workflow.graph.FlowNode stageStartNode) This will return true for flow nodes in *child* stages, not just the immediate enclosing stage.static com.google.common.base.Predicate<org.jenkinsci.plugins.workflow.graph.FlowNode>static com.google.common.base.Predicate<org.jenkinsci.plugins.workflow.graph.FlowNode>isStageWithOptionalName(String stageName) 
- 
Constructor Details- 
CommonUtilspublic CommonUtils()
 
- 
- 
Method Details- 
isStageWithOptionalNamepublic static com.google.common.base.Predicate<org.jenkinsci.plugins.workflow.graph.FlowNode> isStageWithOptionalName(String stageName) 
- 
isStageWithOptionalNamepublic static com.google.common.base.Predicate<org.jenkinsci.plugins.workflow.graph.FlowNode> isStageWithOptionalName()
- 
findPossiblyUnfinishedEndNodeForCurrentStage
- 
findPossiblyUnfinishedEndNodeForCurrentStage
- 
isSomewhereWithinStagepublic static com.google.common.base.Predicate<org.jenkinsci.plugins.workflow.graph.FlowNode> isSomewhereWithinStage(org.jenkinsci.plugins.workflow.graph.FlowNode stageStartNode) This will return true for flow nodes in *child* stages, not just the immediate enclosing stage.- Parameters:
- stageStartNode-
- Returns:
- A predicate that returns true if the applied input is somewhere within the given stage
 
- 
instantiateDescribable
- 
copyMapReplacingEntrypublic static <T> Map<String,Object> copyMapReplacingEntry(Map<String, ?> map, String oldKey, String newKey, Class<T> requiredValueType, Function<T, Object> replacer) Copy a map, replacing the entry with the specified key if it matches the specified type.
 
-