Class PipelineExecutorParameters
- java.lang.Object
-
- org.apache.hop.pipeline.transforms.pipelineexecutor.PipelineExecutorParameters
-
-
Constructor Summary
Constructors Constructor Description PipelineExecutorParameters()PipelineExecutorParameters(Node paramNode)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidallocate(int nrVariables)Objectclone()String[]getField()String[]getInput()String[]getVariable()StringgetXml()booleanisInheritingAllVariables()voidsetField(String[] field)voidsetInheritingAllVariables(boolean inheritingAllVariables)voidsetInput(String[] input)voidsetVariable(String[] variable)
-
-
-
Field Detail
-
XML_TAG
public static final String XML_TAG
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
PipelineExecutorParameters
public PipelineExecutorParameters()
-
PipelineExecutorParameters
public PipelineExecutorParameters(Node paramNode)
-
-
Method Detail
-
allocate
public void allocate(int nrVariables)
-
getXml
public String getXml()
-
getField
public String[] getField()
- Returns:
- the field name to use
-
setField
public void setField(String[] field)
- Parameters:
field- the input field name to set
-
getVariable
public String[] getVariable()
- Returns:
- the variable
-
setVariable
public void setVariable(String[] variable)
- Parameters:
variable- the variable to set
-
isInheritingAllVariables
public boolean isInheritingAllVariables()
- Returns:
- the inheritingAllVariables
-
setInheritingAllVariables
public void setInheritingAllVariables(boolean inheritingAllVariables)
- Parameters:
inheritingAllVariables- the inheritingAllVariables to set
-
getInput
public String[] getInput()
- Returns:
- the input
-
setInput
public void setInput(String[] input)
- Parameters:
input- the input to set
-
-