Skip to content

Instantly share code, notes, and snippets.

@zivce
Created September 25, 2020 07:52
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 zivce/3400e7b4f359869e3116dd32315a75b4 to your computer and use it in GitHub Desktop.
Save zivce/3400e7b4f359869e3116dd32315a75b4 to your computer and use it in GitHub Desktop.
final List<String> categories = source.getCategories().stream()
.map(getUniqueItemIdentifierService()::getItemData)
.filter(Optional::isPresent)
.map(Optional::get)
.map(ItemData::getItemId)
.collect(Collectors.toList());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment