Class ReaderUtils

java.lang.Object
ch.rabanti.nanoxlsx4j.lowLevel.ReaderUtils

public class ReaderUtils extends Object
Static class with common util methods, used during reading XLSX files
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Class
    Description
    protected static class 
    Low-level parser class to handle nullable integers
  • Method Summary

    Modifier and Type
    Method
    Description
    protected static int
    Parses a bool as a binary number either based on an int (0/1) or a string expression (true/ false), independent of the culture info of the host

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Method Details

    • parseBinaryBoolean

      protected static int parseBinaryBoolean(String rawValue)
      Parses a bool as a binary number either based on an int (0/1) or a string expression (true/ false), independent of the culture info of the host
      Parameters:
      rawValue - Raw number or expression as string
      Returns:
      arsed boolean as number (0 = false, 1 = true)