Uses of Class
de.muehlencord.shared.poi.PoiException

  • Uses of PoiException in de.muehlencord.shared.poi

    Modifier and Type
    Method
    Description
    static boolean
    PoiUtil.getBooleanValue(org.apache.poi.ss.usermodel.Row currentRow, int cellNumber, boolean returnDefaultValue, boolean defaultValue)
     
    static LocalDate
    PoiUtil.getDateValue(org.apache.poi.ss.usermodel.Row row, int cellNumber)
     
    static LocalDate
    PoiUtil.getDateValue(org.apache.poi.ss.usermodel.Row row, int cellNumber, boolean returnDefaultValue, LocalDate defaultValue)
     
    static double
    PoiUtil.getDoubleValue(org.apache.poi.ss.usermodel.Row currentRow, int cellNumber)
     
    static Double
    PoiUtil.getDoubleValue(org.apache.poi.ss.usermodel.Row currentRow, int cellNumber, boolean returnDefaultValue, Double defaultValue)
     
    static int
    PoiUtil.getIntegerValue(org.apache.poi.ss.usermodel.Row currentRow, int cellNumber)
     
    static Integer
    PoiUtil.getIntegerValue(org.apache.poi.ss.usermodel.Row currentRow, int cellNumber, boolean returnDefaultValue, Integer defaultValue)
     
    static String
    PoiUtil.getStringValue(org.apache.poi.ss.usermodel.Row row, int cellNumber)
     
    static String
    PoiUtil.getStringValue(org.apache.poi.ss.usermodel.Row row, int cellNumber, boolean mandatory)
    Returns the string value from the given cell.
    static String
    PoiUtil.getStringValue(org.apache.poi.ss.usermodel.Row row, int cellNumber, boolean returnDefaultValue, String defaultValue)