Bytes.contains() method of Guava's Bytes Class accepts two parameters array and target. The method is used to check if the target element is present in the array or not.
Syntax:
Java Java
public static boolean contains(byte[] array,
byte target)
Parameters: The method accepts two parameters :
- array: An array of byte values, possibly empty.
- target: A primitive byte value which is to be checked if it is present in the array or not.
// Java code to show implementation of
// Guava's Bytes.contains() method
import com.google.common.primitives.Bytes;
import java.util.Arrays;
class GFG {
// Driver's code
public static void main(String[] args)
{
// Creating a Byte array
byte[] arr = { 5, 4, 3, 2, 1 };
byte target = 3;
// Using Bytes.contains() method to search
// for an element in the array. The method
// returns true if element is found, else
// returns false
if (Bytes.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 Bytes.contains() method
import com.google.common.primitives.Bytes;
import java.util.Arrays;
class GFG {
// Driver's code
public static void main(String[] args)
{
// Creating a Byte array
byte[] arr = { 2, 4, 6, 8, 10 };
byte target = 7;
// Using Bytes.contains() method to search
// for an element in the array. The method
// returns true if element is found, else
// returns false
if (Bytes.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/Bytes.html#contains(byte%5B%5D, %20byte)Target is not present in the array