* PDF to X * PDF to X * Remove created doc * Code fixes and cleanup for PDF module * Fix web.xml in spring-mvc-web-vs-initializer project * Rollback web.xml * Fixes to PDF article * Merge with main eugen branch * Junit 5 * Fix name of test and modifier
12 lines
185 B
Java
12 lines
185 B
Java
package com.baeldung;
|
|
|
|
public final class StringUtils {
|
|
|
|
public static Double convertToDouble(String str) {
|
|
if (str == null) {
|
|
return null;
|
|
}
|
|
return Double.valueOf(str);
|
|
}
|
|
}
|