Class ExcelField
- java.lang.Object
-
- org.pentaho.di.trans.steps.exceloutput.ExcelField
-
- All Implemented Interfaces:
Cloneable
public class ExcelField extends Object implements Cloneable
Describes a single field in an excel file TODO: allow the width of a column to be set --> data.sheet.setColumnView(column, width); TODO: allow the default font to be set TODO: allow an aggregation formula on one of the columns --> SUM(A2:A151)- Since:
- 7-09-2006
- Author:
- Matt
-
-
Constructor Summary
Constructors Constructor Description ExcelField()ExcelField(String name, int type, String format)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Objectclone()intcompare(Object obj)booleanequal(Object obj)StringgetFormat()StringgetName()intgetType()StringgetTypeDesc()voidsetFormat(String format)voidsetName(String fieldname)voidsetType(int type)voidsetType(String typeDesc)StringtoString()
-
-
-
Method Detail
-
compare
public int compare(Object obj)
-
equal
public boolean equal(Object obj)
-
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)
-
-