List.containsAll(Collection <?> c) has the following syntax.
boolean containsAll(Collection <?> c)
In the following code shows how to use List.containsAll(Collection <?> c) method.
// w ww. j a va 2 s . co m 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" }); List list1 = Arrays.asList(new String[] { "A", "B", "C", "D" }); System.out.println(list1.containsAll(list)); } }
The code above generates the following result.