All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.pjfanning.xlsx.impl.NumberUtil Maven / Gradle / Ivy

The newest version!
package com.github.pjfanning.xlsx.impl;

final class NumberUtil {

  static int parseInt(final String s) {
    return Integer.parseInt(s.trim());
  }

  static double parseDouble(final String s) {
    return Double.parseDouble(s.trim());
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy