VOOZH about

URL: https://www.geeksforgeeks.org/java/java-guava-doubles-contains-method-with-examples/

⇱ Java Guava | Doubles.contains() method with Examples - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Java Guava | Doubles.contains() method with Examples

Last Updated : 11 Jul, 2025
The contains() method of Doubles Class in Guava library is used to check if a specified value is present in the specified array of double values. The double value to be searched and the double array in which it is to be searched, are both taken as a parameter. Syntax:
public static boolean contains(double[] array,
 double target)
Parameters: This method accepts two mandatory parameters:
  • array: which is an array of double values in which the target value is to be searched.
  • target: which is the double value to be searched for presence in the array.
Return Value: This method returns a boolean value stating whether the target double value is present in the specified double array. It returns True if the target value is present in the array. Else it returns False. Below programs illustrate the use of contains() method: Example 1:
Output:
Target is present in the array
Example 2:
Comment