Class TextFileField
- java.lang.Object
-
- org.pentaho.di.trans.steps.textfileoutput.TextFileField
-
-
Constructor Summary
Constructors Constructor Description TextFileField()
TextFileField(String name, int type, String format, int length, int precision, String currencySymbol, String decimalSymbol, String groupSymbol, String nullString)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Object
clone()
int
compare(Object obj)
boolean
equal(Object obj)
String
getCurrencySymbol()
String
getDecimalSymbol()
String
getFormat()
String
getGroupingSymbol()
int
getLength()
String
getName()
String
getNullString()
int
getPrecision()
int
getTrimType()
String
getTrimTypeCode()
String
getTrimTypeDesc()
int
getType()
String
getTypeDesc()
void
setCurrencySymbol(String currency_symbol)
void
setDecimalSymbol(String decimal_symbol)
void
setFormat(String format)
void
setGroupingSymbol(String group_symbol)
void
setLength(int length)
void
setName(String fieldname)
void
setNullString(String null_string)
void
setPrecision(int precision)
void
setTrimType(int trimType)
void
setTrimTypeByDesc(String value)
void
setType(int type)
void
setType(String typeDesc)
String
toString()
-
-
-
Method Detail
-
compare
public int compare(Object obj)
-
equal
public boolean equal(Object obj)
-
getLength
public int getLength()
-
setLength
public void setLength(int length)
-
getName
public String getName()
-
setName
public void setName(String fieldname)
-
getType
public int getType()
-
getTypeDesc
public String getTypeDesc()
-
setType
public void setType(int type)
-
setType
public void setType(String typeDesc)
-
getFormat
public String getFormat()
-
setFormat
public void setFormat(String format)
-
getGroupingSymbol
public String getGroupingSymbol()
-
setGroupingSymbol
public void setGroupingSymbol(String group_symbol)
-
getDecimalSymbol
public String getDecimalSymbol()
-
setDecimalSymbol
public void setDecimalSymbol(String decimal_symbol)
-
getCurrencySymbol
public String getCurrencySymbol()
-
setCurrencySymbol
public void setCurrencySymbol(String currency_symbol)
-
getPrecision
public int getPrecision()
-
setPrecision
public void setPrecision(int precision)
-
getNullString
public String getNullString()
-
setNullString
public void setNullString(String null_string)
-
getTrimType
public int getTrimType()
-
setTrimType
public void setTrimType(int trimType)
-
setTrimTypeByDesc
public void setTrimTypeByDesc(String value)
-
getTrimTypeCode
public String getTrimTypeCode()
-
getTrimTypeDesc
public String getTrimTypeDesc()
-
-