AbstractCollection contains() Method in Java with Examples

The contains() method of Java AbstractCollection is used to check whether an element is present in a Collection or not. It takes the element as a parameter and returns True if the element is present in the collection.
Syntax:Â
AbstractCollection.contains(Object element)
Parameters: The parameter element is of type Collection. This parameter refers to the element whose occurrence is needed to be checked in the collection.
Return Value: The method returns True if the element is present in the Collection otherwise it returns False.
Below programs illustrate the Java.util.AbstractCollection.contains() method:
Program 1:
Java
// Java code to illustrate boolean contains()Â
import java.util.*;import java.util.AbstractCollection;Â
public class AbstractCollectionDemo {Â Â Â Â public static void main(String args[])Â Â Â Â {Â
        // Creating an empty Collection        AbstractCollection<String>            abs = new LinkedList<String>();Â
        // Use add() method to add        // elements in the collection        abs.add("Geeks");        abs.add("for");        abs.add("Geeks");        abs.add("10");        abs.add("20");Â
        // Displaying the collection        System.out.println("Abstract Collection:"                           + abs);Â
        // Check if the collection contains "Hello"        System.out.println("\nDoes the Collection"                           + " contains 'Hello': "                           + abs.contains("Hello"));Â
        // Check if the Collection contains "20"        System.out.println("Does the collection"                           + " contains '20': "                           + abs.contains("20"));Â
        // Check if the Collection contains "Geeks"        System.out.println("Does the Collection"                           + " contains 'Geeks': "                           + abs.contains("Geeks"));    }} |
Output:Â
Abstract Collection:[Geeks, for, Geeks, 10, 20] Does the Collection contains 'Hello': false Does the collection contains '20': true Does the Collection contains 'Geeks': true
Â
Program 2:
Java
// Java code to illustrate boolean contains()Â
import java.util.*;import java.util.AbstractCollection;Â
public class AbstractCollectionDemo {Â Â Â Â public static void main(String args[])Â Â Â Â {Â
        // Creating an empty Collection        AbstractCollection<String>            abs = new TreeSet<String>();Â
        // Use add() method to add        // elements in the collection        abs.add("Geeks");        abs.add("for");        abs.add("Geeks");        abs.add("TreeSet");        abs.add("20");Â
        // Displaying the collection        System.out.println("Abstract Collection:"                           + abs);Â
        // Check if the collection contains "TreeSet"        System.out.println("\nDoes the Collection "                           + "contains 'TreeSet': "                           + abs.contains("TreeSet"));Â
        // Check if the collection contains "Hello"        System.out.println("\nDoes the Collection"                           + " contains 'Hello': "                           + abs.contains("Hello"));Â
        // Check if the Collection contains "20"        System.out.println("Does the collection"                           + " contains '20': "                           + abs.contains("20"));Â
        // Check if the Collection contains "Geeks"        System.out.println("Does the Collection"                           + " contains 'Geeks': "                           + abs.contains("Geeks"));    }} |
Output:Â
Abstract Collection:[20, Geeks, TreeSet, for] Does the Collection contains 'TreeSet': true Does the Collection contains 'Hello': false Does the collection contains '20': true Does the Collection contains 'Geeks': true
Â



