Uses of Class
com.poiji.option.PoijiOptions
-
Packages that use PoijiOptions Package Description com.poiji.bind com.poiji.bind.mapping com.poiji.config com.poiji.option com.poiji.util -
-
Uses of PoijiOptions in com.poiji.bind
Methods in com.poiji.bind with parameters of type PoijiOptions Modifier and Type Method Description static <T> List<T>Poiji. fromExcel(File file, Class<T> type, PoijiOptions options)converts excel rows into a list of objectsstatic <T> voidPoiji. fromExcel(File file, Class<T> type, PoijiOptions options, Consumer<? super T> consumer)converts excel rows into a list of objectsstatic <T> List<T>Poiji. fromExcel(InputStream inputStream, PoijiExcelType excelType, Class<T> type, PoijiOptions options)converts excel rows into a list of objectsstatic <T> voidPoiji. fromExcel(InputStream inputStream, PoijiExcelType excelType, Class<T> type, PoijiOptions options, Consumer<? super T> consumer)converts excel rows into a list of objectsstatic <T> List<T>Poiji. fromExcel(org.apache.poi.ss.usermodel.Sheet sheet, Class<T> type, PoijiOptions options)converts excel rows into a list of objectsstatic <T> voidPoiji. fromExcel(org.apache.poi.ss.usermodel.Sheet sheet, Class<T> type, PoijiOptions options, Consumer<? super T> consumer)converts excel rows into a list of objectsstatic <T> TPoiji. fromExcelProperties(File file, Class<T> type, PoijiOptions options)converts excel properties into an objectstatic <T> TPoiji. fromExcelProperties(InputStream inputStream, PoijiExcelType excelType, Class<T> type, PoijiOptions options)converts excel properties into an objectdefault <T> Optional<String>Unmarshaller. getSheetName(Class<T> type, PoijiOptions options) -
Uses of PoijiOptions in com.poiji.bind.mapping
Fields in com.poiji.bind.mapping declared as PoijiOptions Modifier and Type Field Description protected PoijiOptionsHSSFUnmarshaller. optionsMethods in com.poiji.bind.mapping with parameters of type PoijiOptions Modifier and Type Method Description static HSSFPropertyFilePoijiPropertyHelper. createPoijiPropertyFile(File file, PoijiOptions options)static HSSFPropertyStreamPoijiPropertyHelper. createPoijiPropertyStream(InputStream inputStream, PoijiOptions options)<T> Optional<String>SheetUnmarshaller. getSheetName(Class<T> type, PoijiOptions options)static UnmarshallerUnmarshallerHelper. HSSFInstance(PoijiFile<?> poijiFile, PoijiOptions options)static UnmarshallerUnmarshallerHelper. HSSFInstance(PoijiInputStream<?> poijiInputStream, PoijiOptions options)static UnmarshallerUnmarshallerHelper. SheetInstance(org.apache.poi.ss.usermodel.Sheet sheet, PoijiOptions options)static UnmarshallerUnmarshallerHelper. XSSFInstance(PoijiFile<?> poijiFile, PoijiOptions options)static UnmarshallerUnmarshallerHelper. XSSFInstance(PoijiInputStream<?> poijiInputStream, PoijiOptions options) -
Uses of PoijiOptions in com.poiji.config
Methods in com.poiji.config with parameters of type PoijiOptions Modifier and Type Method Description ObjectCasting. castValue(Field fieldType, String value, int row, int column, PoijiOptions options)ObjectDefaultCasting. castValue(Field field, String rawValue, int row, int col, PoijiOptions options)protected ObjectDefaultCasting. getValueObject(Field field, int row, int col, PoijiOptions options, String rawValue, Class<?> fieldType)StringDefaultFormatting. transform(PoijiOptions options, String value)StringFormatting. transform(PoijiOptions options, String value)Normalize header names using custom formatting -
Uses of PoijiOptions in com.poiji.option
Methods in com.poiji.option that return PoijiOptions Modifier and Type Method Description PoijiOptionsPoijiOptions.PoijiOptionsBuilder. build()PoijiOptionsPoijiOptions. setCasting(Casting casting)PoijiOptionsPoijiOptions. setLimit(int limit)PoijiOptionsPoijiOptions. setTrimCellValue(boolean trimCellValue) -
Uses of PoijiOptions in com.poiji.util
Methods in com.poiji.util with parameters of type PoijiOptions Modifier and Type Method Description static <T> voidAnnotationUtil. validateMandatoryNameColumns(PoijiOptions options, Formatting formatting, Class<T> modelType, Collection<String> headerNames)Validate that all headers specified via @ExcelCellName annotations are present in the list of header names.
-