Uses of Class
io.github.mbenincasa.javaexcelutils.exceptions.SheetAlreadyExistsException
Packages that use SheetAlreadyExistsException
Package
Description
-
Uses of SheetAlreadyExistsException in io.github.mbenincasa.javaexcelutils.model.excel
Methods in io.github.mbenincasa.javaexcelutils.model.excel that throw SheetAlreadyExistsExceptionModifier and TypeMethodDescriptionExcelWorkbook.createSheet(String sheetName) Create a new Sheet inside the Workbook -
Uses of SheetAlreadyExistsException in io.github.mbenincasa.javaexcelutils.tools
Methods in io.github.mbenincasa.javaexcelutils.tools that throw SheetAlreadyExistsExceptionModifier and TypeMethodDescriptionstatic byte[]Converter.csvToExcelByte(byte[] bytes, String sheetName, Extension extension) static FileConverter.csvToExcelFile(File fileInput, String sheetName, String pathname, Extension extension) static ByteArrayOutputStreamConverter.csvToExcelStream(InputStream inputStream, String sheetName, Extension extension) static <T> byte[]Converter.jsonToExcelByte(byte[] bytes, JsonToExcel<T> jsonToExcel, Extension extension, Boolean writeHeader) static <T> FileConverter.jsonToExcelFile(File jsonFile, JsonToExcel<T> jsonToExcel, Extension extension, String filename, Boolean writeHeader) static <T> ByteArrayOutputStreamConverter.jsonToExcelStream(InputStream jsonStream, JsonToExcel<T> jsonToExcel, Extension extension, Boolean writeHeader) static byte[]Converter.objectsToExcelByte(List<ObjectToExcel<?>> objectToExcels, Extension extension, Boolean writeHeader) static FileConverter.objectsToExcelFile(List<ObjectToExcel<?>> objectToExcels, Extension extension, String filename, Boolean writeHeader) static ByteArrayOutputStreamConverter.objectsToExcelStream(List<ObjectToExcel<?>> objectToExcels, Extension extension, Boolean writeHeader)