Skip to content

Instantly share code, notes, and snippets.

@HDBandit
Last active December 7, 2015 21:09
Show Gist options
  • Save HDBandit/f6d09a9846e1beb39683 to your computer and use it in GitHub Desktop.
Save HDBandit/f6d09a9846e1beb39683 to your computer and use it in GitHub Desktop.
Optional<AudioSystem> maybeAudioSystem = ...;
maybeAudioSystem.filter(as -> "Pionner".equals(as.getBrand())
.ifPresent(as -> System.out.println(as));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment