Como encontrar o tamanho de uma fila em java

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