Java Collection Tutorial - Java List.indexOf(Object o)








Syntax

List.indexOf(Object o) has the following syntax.

int indexOf(Object o)

Example

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.