PriorityQueue.contains(Object o) has the following syntax.
public boolean contains(Object o)
In the following code shows how to use PriorityQueue.contains(Object o) method.
import java.util.PriorityQueue; //from w ww . j a v a2s . com public class Main { public static void main(String args[]) { PriorityQueue<Integer> prq = new PriorityQueue<Integer>(); for ( int i = 0; i < 10; i++ ){ prq.add(i) ; } System.out.println(prq); // check if queue contains 5 boolean b = prq.contains(5); System.out.println ( "Priority queue contains 5: " + b); } }
The code above generates the following result.