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:
Java
Java
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.
// Java code to show implementation of
// Guava's Doubles.contains() method
import com.google.common.primitives.Doubles;
import java.util.Arrays;
class GFG {
// Driver's code
public static void main(String[] args)
{
// Creating a Double array
double[] arr = { 5.2, 4.2, 3.4, 2.3, 1.5 };
double target = 3.4;
// Using Doubles.contains() method to search
// for an element in the array. The method
// returns true if element is found, else
// returns false
if (Doubles.contains(arr, target))
System.out.println("Target is present"
+ " in the array");
else
System.out.println("Target is not present"
+ " in the array");
}
}
Output:
Example 2:
Target is present in the array
// Java code to show implementation of
// Guava's Doubles.contains() method
import com.google.common.primitives.Doubles;
import java.util.Arrays;
class GFG {
// Driver's code
public static void main(String[] args)
{
// Creating a Double array
double[] arr = { 2.3, 4.4, 6.5, 8.6, 10.7 };
double target = 7.5;
// Using Doubles.contains() method to search
// for an element in the array. The method
// returns true if element is found, else
// returns false
if (Doubles.contains(arr, target))
System.out.println("Target is present"
+ " in the array");
else
System.out.println("Target is not present"
+ " in the array");
}
}
Output:
Reference:
https://guava.dev/releases/19.0/api/docs/com/google/common/primitives/Doubles.html#contains(double%5B%5D, %20double)Target is not present in the array