Answers for "search element of list in another list java"

1

find object with same attribute java stream

Optional<Person> matchingObject = objects.stream().
    filter(p -> p.email().equals("testemail")).
    findFirst();
Posted by: Guest on December-09-2020
0

java find if element of list in present in another list

list1.stream()
   .map(Object1::getProperty)
   .anyMatch(
     list2.stream()
       .map(Object2::getProperty)
       .collect(toSet())
       ::contains)

// Example with predicate
Predicate<Object> notInList1 = object -> list1.stream().noneMatch(object::equals);
List<Object> missingInList1 = list2.stream().filter(notInList1).collect(Collectors.toList());
Posted by: Guest on February-26-2020

Code answers related to "search element of list in another list java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language