It finds all values in the receiving object matching the closure condition.
Syntax
List findAll(Closure closure)
Parameters
The condition to be met by the collection element is specified in the closure that must be some Boolean expression.
Return Value
The find method returns a list of all values found as per the expression.
Example
Following is an example of the usage of this method −
class Example { static void main(String[] args) { def lst = [1,2,3,4]; def value; value = lst.findAll{element -> element > 2} value.each {println it} } }
When we run the above program, we will get the following result −
3 4
Previous Page:-Click Here
Hey, thanks for the article.Much thanks again. Keep writing.
Really informative article post. Awesome.