Skip to content

Instantly share code, notes, and snippets.

@abhirockzz
Last active August 29, 2015 14:06
Show Gist options
  • Save abhirockzz/1df6a020ad81e124aa05 to your computer and use it in GitHub Desktop.
Save abhirockzz/1df6a020ad81e124aa05 to your computer and use it in GitHub Desktop.
Returning an Optional with no value (no value does not equal null)
public static Optional<String> emptyOptional() {
return Optional.empty();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment