List.indexOf(Object o) has the following syntax.
int indexOf(Object o)
In the following code shows how to use List.indexOf(Object o) method.
import java.util.Arrays; import java.util.List; public class Main { public static void main(String[] a) { List list = Arrays.asList(new String[] { "A", "B", "C", "D" }); System.out.println(list.indexOf("A")); } }
The code above generates the following result.