VOOZH about

URL: https://www.geeksforgeeks.org/java/java-guava-booleans-lastindexof-method-with-examples/

⇱ Java Guava | Booleans.lastIndexOf() method with Examples - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Java Guava | Booleans.lastIndexOf() method with Examples

Last Updated : 11 Jul, 2025
The lastIndexOf() method of Booleans Class in Guava library is used to find the last index of the given boolean value in a boolean array. This boolean value to be searched and the boolean array in which is to be searched, both are passed as parameter to this method. It returns an integer value which is the last index of the specified boolean value. If the value is not found, it returns -1. Syntax:
public static int lastIndexOf(boolean[] array,
 boolean target)
Parameters: This method accepts two mandatory parameters:
  • array: which is the array of boolean values in which the boolean value is to searched.
  • target: which is boolean value to be searched for last index in the boolean array.
Return Value: This method returns an integer value which is the last index of the specified boolean value. If the value is not found, it returns -1. Below programs illustrates this method: Example-1:
Output:
Target is present at index 4
Example-2:
Comment