Package com.basiscomponents.db.export
Class ColumnConfiguration
- java.lang.Object
-
- com.basiscomponents.db.export.ColumnConfiguration
-
public class ColumnConfiguration extends Object
Provides the attributes and methods needed to manage a particular column in a spread sheet.
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
ColumnConfiguration()
Protected Constructor to be used by Builder class onlyColumnConfiguration(String header)
ColumnConfiguration(String header, int width)
ColumnConfiguration(String header, int width, String fieldName, String fieldType)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getFieldName()
String
getHeader()
int
getWidth()
void
setFieldName(String fieldName)
protected void
setHeader(String header)
void
setWidth(int width)
-
-
-
Constructor Detail
-
ColumnConfiguration
public ColumnConfiguration(String header, int width)
-
ColumnConfiguration
public ColumnConfiguration(String header, int width, String fieldName, String fieldType)
-
ColumnConfiguration
public ColumnConfiguration(String header)
-
ColumnConfiguration
protected ColumnConfiguration()
Protected Constructor to be used by Builder class only
-
-