public static enum ExcelDocument.ProviderType extends Enum<ExcelDocument.ProviderType>
Enum Constant and Description |
---|
JXL
Read/Write .xls files using JExcel/JXL.
|
POI
Read/Write .xls files (Excel 2003) using Apache POI.
|
POI_SXSSF
Writes .xlsx files (Excel 2007+) using Apache POI's streaming API (SXSSF) and temporary
files to reduce memory usage.
|
POI_XSSF
Read/Write .xlsx files (Excel 2007+) using Apache POI.
|
POI_XSSF_SAX
Reads .xlsx files (Excel 2007+) using Apache POI's streaming API (XSSF_SAX)
to reduce memory usage.
|
Modifier and Type | Method and Description |
---|---|
abstract com.northconcepts.datapipeline.excel.Provider |
newProvider() |
static ExcelDocument.ProviderType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExcelDocument.ProviderType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExcelDocument.ProviderType POI
public static final ExcelDocument.ProviderType POI_XSSF
public static final ExcelDocument.ProviderType POI_SXSSF
POI_XSSF
, you
should explicitly use POI_XSSF_SAX
where streaming reads are needed.public static final ExcelDocument.ProviderType POI_XSSF_SAX
public static final ExcelDocument.ProviderType JXL
public static ExcelDocument.ProviderType[] values()
for (ExcelDocument.ProviderType c : ExcelDocument.ProviderType.values()) System.out.println(c);
public static ExcelDocument.ProviderType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic abstract com.northconcepts.datapipeline.excel.Provider newProvider()
Copyright (c) 2006-2024 North Concepts Inc. All Rights Reserved.