Class InjectorField
- java.lang.Object
-
- org.apache.hop.pipeline.transforms.injector.InjectorField
-
public class InjectorField extends Object
-
-
Constructor Summary
Constructors Constructor Description InjectorField()InjectorField(String name, String type, String length, String precision)InjectorField(InjectorField f)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IValueMetacreateValueMeta(IVariables variables)StringgetLength()Gets lengthStringgetName()Gets nameStringgetPrecision()Gets precisionStringgetType()Gets typevoidsetLength(String length)voidsetName(String name)voidsetPrecision(String precision)voidsetType(String type)
-
-
-
Constructor Detail
-
InjectorField
public InjectorField()
-
InjectorField
public InjectorField(InjectorField f)
-
-
Method Detail
-
createValueMeta
public IValueMeta createValueMeta(IVariables variables) throws HopException
- Throws:
HopException
-
getName
public String getName()
Gets name- Returns:
- value of name
-
setName
public void setName(String name)
- Parameters:
name- The name to set
-
getType
public String getType()
Gets type- Returns:
- value of type
-
setType
public void setType(String type)
- Parameters:
type- The type to set
-
getLength
public String getLength()
Gets length- Returns:
- value of length
-
setLength
public void setLength(String length)
- Parameters:
length- The length to set
-
getPrecision
public String getPrecision()
Gets precision- Returns:
- value of precision
-
setPrecision
public void setPrecision(String precision)
- Parameters:
precision- The precision to set
-
-