- java.lang.Object
-
- org.dhatim.fastexcel.reader.ReadingOptions
-
public class ReadingOptions extends Object
-
-
Field Summary
Fields Modifier and Type Field Description static ReadingOptions
DEFAULT_READING_OPTIONS
-
Constructor Summary
Constructors Constructor Description ReadingOptions(boolean withCellFormat, boolean cellInErrorIfParseError)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
isCellInErrorIfParseError()
boolean
isWithCellFormat()
-
-
-
Field Detail
-
DEFAULT_READING_OPTIONS
public static final ReadingOptions DEFAULT_READING_OPTIONS
-
-
Constructor Detail
-
ReadingOptions
public ReadingOptions(boolean withCellFormat, boolean cellInErrorIfParseError)
- Parameters:
withCellFormat
- If true, extract cell formattingcellInErrorIfParseError
- If true, cell type is ERROR if it is not possible to parse cell value. If false, an exception is throw when there is a parsing error
-
-
Method Detail
-
isWithCellFormat
public boolean isWithCellFormat()
- Returns:
- true for extract cell formatting
-
isCellInErrorIfParseError
public boolean isCellInErrorIfParseError()
- Returns:
- true for cell type is ERROR if it is not possible to parse cell value, false for an exception is throw when there is a parsing error
-
-