Cómo encontrar el tamaño de una cola en Java

Queue<Node> qu = new LinkedList<>();	// Declaring the queue
System.out.println(qu.size());	// Printing the size of queue
Vishal