itemList.stream()
.filter(item -> item.getPropertyList()
.stream().anyMatch(property -> property.getKey().equals("Test")))
.collect(Collectors.toList());
itemList.stream()
.filter(item -> item.getPropertyList()
.stream().anyMatch(property -> property.getKey().equals("Test")))
.collect(Collectors.toList());