Open In App

BlockingDeque contains() method in Java with Examples

Last Updated : 12 Jul, 2025
Comments
Improve
Suggest changes
Like Article
Like
Report
The contains(Object o) method of BlockingDeque checks if the passed element in the parameter exists in the container or not. It returns true if the element exists in the container else it returns a false value. Syntax:
public boolean contains(Object o)
Parameters: This method accepts a mandatory parameter o whose presence in the container is to be checked in the container. Returns: This method returns true if the element is present, else it returns false. Note: The contains() method of BlockingDeque has been inherited from the LinkedBlockingDeque class in Java. Below programs illustrate contains() method of BlockingDeque: Program 1:
Output:
Blocking Deque: [10, 20, 30, 40]
Blocking Deque contains 10
Program 2:
Output:
Blocking Deque: [ab, cd, fg, xz]
Blocking Deque does not contain 'go'
Reference: https://docs.oracle.com/javase/7/docs/api/java/util/concurrent/LinkedBlockingDeque.html#contains(java.lang.Object)

Similar Reads