Class GetVariableMeta.FieldDefinition
- java.lang.Object
-
- org.pentaho.di.trans.steps.getvariable.GetVariableMeta.FieldDefinition
-
- All Implemented Interfaces:
Cloneable
- Enclosing class:
- GetVariableMeta
public static class GetVariableMeta.FieldDefinition extends Object implements Cloneable
-
-
Constructor Summary
Constructors Constructor Description FieldDefinition()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description GetVariableMeta.FieldDefinition
clone()
String
getCurrency()
String
getDecimal()
String
getFieldFormat()
int
getFieldLength()
String
getFieldName()
int
getFieldPrecision()
int
getFieldType()
String
getGroup()
int
getTrimType()
String
getVariableString()
void
setCurrency(String currency)
void
setDecimal(String decimal)
void
setFieldFormat(String fieldFormat)
void
setFieldLength(int fieldLength)
void
setFieldName(String fieldName)
void
setFieldPrecision(int fieldPrecision)
void
setFieldType(int fieldType)
void
setGroup(String group)
void
setTrimType(int trimType)
void
setVariableString(String variableString)
-
-
-
Method Detail
-
getFieldName
public String getFieldName()
- Returns:
- Returns the fieldName.
-
setFieldName
public void setFieldName(String fieldName)
- Parameters:
fieldName
- The fieldName to set.
-
getVariableString
public String getVariableString()
- Returns:
- Returns the strings containing variables.
-
setVariableString
public void setVariableString(String variableString)
- Parameters:
variableString
- The variable strings to set.
-
getFieldType
public int getFieldType()
- Returns:
- the field type (ValueMetaInterface.TYPE_*)
-
setFieldType
public void setFieldType(int fieldType)
- Parameters:
fieldType
- the field type to set (ValueMetaInterface.TYPE_*)
-
getFieldFormat
public String getFieldFormat()
- Returns:
- the fieldFormat
-
setFieldFormat
public void setFieldFormat(String fieldFormat)
- Parameters:
fieldFormat
- the fieldFormat to set
-
getFieldLength
public int getFieldLength()
- Returns:
- the fieldLength
-
setFieldLength
public void setFieldLength(int fieldLength)
- Parameters:
fieldLength
- the fieldLength to set
-
getFieldPrecision
public int getFieldPrecision()
- Returns:
- the fieldPrecision
-
setFieldPrecision
public void setFieldPrecision(int fieldPrecision)
- Parameters:
fieldPrecision
- the fieldPrecision to set
-
getCurrency
public String getCurrency()
- Returns:
- the currency
-
setCurrency
public void setCurrency(String currency)
- Parameters:
currency
- the currency to set
-
getDecimal
public String getDecimal()
- Returns:
- the decimal
-
setDecimal
public void setDecimal(String decimal)
- Parameters:
decimal
- the decimal to set
-
getGroup
public String getGroup()
- Returns:
- the group
-
setGroup
public void setGroup(String group)
- Parameters:
group
- the group to set
-
getTrimType
public int getTrimType()
- Returns:
- the trimType
-
setTrimType
public void setTrimType(int trimType)
- Parameters:
trimType
- the trimType to set
-
clone
public GetVariableMeta.FieldDefinition clone()
-
-