List.contains(Object o) has the following syntax.
boolean contains(Object o)
In the following code shows how to use List.contains(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.contains("C")); } }
The code above generates the following result.