Bytes.indexOf(byte[] array, byte target) method of Guava’s Bytes Class accepts two parameters array and target. If the target exists within the array, the method returns the position of its first occurrence. If the target does not exist within the array, the method returns -1.
Syntax:
public static int indexOf(byte[] array, byte target)
Parameters: The method accepts two parameters:
- array: which is the integer array in which the target array is to checked for index.
- target: which is the value to be searched for as an element in the specified array.
Return Value: The method returns an integer value as follows:
- It returns the position of first occurrence of the target if the target exists in the array.
- Else it returns -1 if the target does not exist in the array.
Exceptions: The method does not throw any exception.
Below examples illustrate the implementation of above method:
Example 1:
import com.google.common.primitives.Bytes;
import java.util.Arrays;
class GFG {
public static void main(String[] args)
{
byte [] arr = { 1 , 2 , 3 , 4 , 3 , 5 };
byte target = 3 ;
System.out.println( "Array: "
+ Arrays.toString(arr));
System.out.println( "Target: " + target);
int index = Bytes.indexOf(arr, target);
if (index != - 1 ) {
System.out.println( "Target is present at index "
+ index);
}
else {
System.out.println( "Target is not present "
+ "in the array" );
}
}
}
|
Output:
Array: [1, 2, 3, 4, 3, 5]
Target: 3
Target is present at index 2
Example 2:
import com.google.common.primitives.Bytes;
import java.util.Arrays;
class GFG {
public static void main(String[] args)
{
byte [] arr = { 3 , 5 , 7 , 11 , 13 };
byte target = 23 ;
System.out.println( "Array: "
+ Arrays.toString(arr));
System.out.println( "Target: " + target);
int index = Bytes.indexOf(arr, target);
if (index != - 1 ) {
System.out.println( "Target is present at index "
+ index);
}
else {
System.out.println( "Target is not present"
+ " in the array" );
}
}
}
|
Output:
Array: [3, 5, 7, 11, 13]
Target: 23
Target is not present in the array
Reference: https://google.github.io/guava/releases/19.0/api/docs/com/google/common/primitives/Bytes.html#indexOf(byte[], %20byte)