Class ExcelTargetTableSpec
- java.lang.Object
-
- com.orchestranetworks.addon.dint.dataconnector.spec.ExcelTargetTableSpec
-
public final class ExcelTargetTableSpec extends java.lang.ObjectSpecification for anExcelTargetTable.- Since:
- 4.1.0
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classExcelTargetTableSpec.ExcelTargetTableSpecBuilderBuilder for creating anExcelTargetTableSpecinstance.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<java.lang.String>getColumnHeaders()Returns the column headers.java.io.FilegetFile()Returns the Excel file.chargetListSeparator()Returns the list separator character.java.lang.StringgetSheetName()Returns the sheet name.booleanisColumnHeaderIncluded()Returnstrueif the file contains header row.static ExcelTargetTableSpec.ExcelTargetTableSpecBuildernewBuilder(java.io.File file)Creates a builder instance.
-
-
-
Method Detail
-
newBuilder
public static ExcelTargetTableSpec.ExcelTargetTableSpecBuilder newBuilder(java.io.File file)
Creates a builder instance.- Parameters:
file- The target file.
-
getFile
public java.io.File getFile()
Returns the Excel file.
-
getSheetName
public java.lang.String getSheetName()
Returns the sheet name.
-
isColumnHeaderIncluded
public boolean isColumnHeaderIncluded()
Returnstrueif the file contains header row.Returns
trueby default.
-
getColumnHeaders
public java.util.List<java.lang.String> getColumnHeaders()
Returns the column headers.
-
getListSeparator
public char getListSeparator()
Returns the list separator character.Returns line-break by default.
- Since:
- 4.2.0
-
-