Advertisement
alexandrecoussy

Untitled

Feb 3rd, 2019
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.19 KB | None | 0 0
  1. StringUtils.isBlank(null) //true
  2. StringUtils.isEmpty(null) //true
  3. StringUtils.isBlank("") //true
  4. StringUtils.isEmpty("") //true
  5. StringUtils.isBlank(" ") //true
  6. StringUtils.isEmpty(" ") //false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement