Groovy – Lists contains()

  • Post author:
  • Post category:Groovy
  • Post comments:1 Comment
List contains

Returns true if this List contains the specified value.

Syntax

boolean contains(Object value)

Parameters

Value โˆ’ The value to find in the list.

Return Value

True or false depending on if the value is present in the list.

Example

Following is an example of the usage of this method โˆ’

class Example { 
   static void main(String[] args) { 
      def lst = [11, 12, 13, 14]; 
		
      println(lst.contains(12)); 
      println(lst.contains(18));
   }
}

When we run the above program, we will get the following result โˆ’

true 
false

Previous Page:-Click Here

This Post Has One Comment

Leave a Reply