Как найти размер очереди на Java

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