Introduction
Here is the source code for Main.java
Source
//package com.java2s;
public class Main {
public static boolean isWhiteSpace(String str) {
if ((str == null) || str.matches("^\\s*$") || str.equals("")) {
return true;
} else {
return false;
}
}
}