Doubles.min() is a method of Doubles Class in Guava library which is used to find the least value present in an array. The value returned by this method is the smallest double value in the specified array.
Syntax:
public static double min(double... array)
Parameters: This method takes a mandatory parameter array which is a nonempty array of double values.
Return Value: This method returns a double value that is the minimum value in the specified array.
Exceptions: The method throws IllegalArgumentException if the array is empty.
Below programs illustrate the use of the above method:
Example 1 :
// Java code to show implementation of // Guava's Doubles.min() 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.2 , 4.3 , 6.4 , 10.5 , 0.6 , - 5.7 , 15.8 }; // Using Doubles.min() method to get the // minimum value present in the array System.out.println( "Minimum Value is : " + Doubles.min(arr)); } } |
Minimum Value is : -5.7
Example 2 :
// Java code to show implementation of // Guava's Doubles.min() 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 = {}; try { // Using Doubles.min() method to get the // minimum value present in the array // This should raise "IllegalArgumentException" // as the array is empty System.out.println( "Minimum Value is : " + Doubles.min(arr)); } catch (Exception e) { System.out.println(e); } } } |
java.lang.IllegalArgumentException