Chars.min() is a method of
Chars 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 char value in the specified array.
Syntax :
public static char min(char... array)
Parameters: This method takes a mandatory parameter
array which is a nonempty array of
char values.
Return Value: This method returns a char 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 :
Output:
Minimum Value is : A
Example 2 :