Skip to content

Instantly share code, notes, and snippets.

@abhirockzz
Last active August 29, 2015 14:06
Show Gist options
  • Save abhirockzz/2707c99a9b48da877f7d to your computer and use it in GitHub Desktop.
Save abhirockzz/2707c99a9b48da877f7d to your computer and use it in GitHub Desktop.
public static void consumingOptional() {
Optional<String> wrapped = Optional.of("aString");
if (wrapped.isPresent()) {
System.out.println("Got string - " + wrapped.get());
}
else {
System.out.println("Gotcha !");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment