Ask Your Question
3

What is the method for filtering a nested List that is contained within another java List?

asked 2022-07-28 11:00:00 +0000

david gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2022-11-08 05:00:00 +0000

woof gravatar image

To filter a nested List that is contained within another java List, you can use the stream() method to create a stream of objects from the List, and then use the filter() method to apply a predicate to the stream. Here is an example code snippet:

List<List<Integer>> nestedList = new ArrayList<>();
nestedList.add(Arrays.asList(1, 2, 3));
nestedList.add(Arrays.asList(4, 5, 6));
nestedList.add(Arrays.asList(7, 8, 9));

List<List<Integer>> filteredList = nestedList.stream()
                .filter(list -> list.contains(3))
                .collect(Collectors.toList());

System.out.println(filteredList);

In this example, the nestedList contains three lists of integers. The filter() method is used to filter the nestedList based on whether any of the nested lists contain the integer value 3. The resulting filteredList will only contain the first nested list, which is [1, 2, 3].

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2022-07-28 11:00:00 +0000

Seen: 8 times

Last updated: Nov 08 '22