The contains() method of Chars Class in Guava library is used to check if a specified value is present in the specified array of char values. The char value to be searched and the char array in which it is to be searched, are both taken as a parameter.
Syntax:
public static boolean contains(char[] array,
char target)
Parameters: This method accepts two mandatory parameters:
- array: which is an array of char values in which the target value is to be searched.
- target: which is the char value to be searched for presence in the array.
Return Value: This method returns a boolean value stating whether the target char value is present in the specified char 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:
import com.google.common.primitives.Chars;
import java.util.Arrays;
class GFG {
public static void main(String[] args)
{
char [] arr = { 'g' , 'e' , 'e' , 'k' , 's' };
char target = 'k' ;
if (Chars.contains(arr, target))
System.out.println( "Target is present"
+ " in the array" );
else
System.out.println( "Target is not present"
+ " in the array" );
}
}
|
Output:
Target is present in the array
Example 2:
import com.google.common.primitives.Chars;
import java.util.Arrays;
class GFG {
public static void main(String[] args)
{
char [] arr = { 'g' , 'e' , 'e' , 'k' , 's' };
char target = 'a' ;
if (Chars.contains(arr, target))
System.out.println( "Target is present"
+ " in the array" );
else
System.out.println( "Target is not present"
+ " in the array" );
}
}
|
Output:
Target is not present in the array
Reference: https://google.github.io/guava/releases/18.0/api/docs/com/google/common/primitives/Chars.html#contains(char[], %20char)
Feeling lost in the vast world of Backend Development? It's time for a change! Join our
Java Backend Development - Live Course and embark on an exciting journey to master backend development efficiently and on schedule.
What We Offer:
- Comprehensive Course
- Expert Guidance for Efficient Learning
- Hands-on Experience with Real-world Projects
- Proven Track Record with 100,000+ Successful Geeks
Last Updated :
31 Jan, 2019
Like Article
Save Article