Skip to content

Instantly share code, notes, and snippets.

@ouyi
Created December 17, 2017 22:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ouyi/1e121a273d3c0bea08d38569009b4e9f to your computer and use it in GitHub Desktop.
Save ouyi/1e121a273d3c0bea08d38569009b4e9f to your computer and use it in GitHub Desktop.
java 8 test whether a nullable String is empty or not
// java 8 test whether a nullable String is empty or not
if (Optional.ofNullable(s).orElse("").isEmpty()) {
// s is null or empty
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment