Java Collection Tutorial - Java LinkedList .descendingIterator ()








Syntax

LinkedList.descendingIterator() has the following syntax.

public Iterator <E> descendingIterator()

Example

In the following code shows how to use LinkedList.descendingIterator() method.

// w w w.jav  a  2  s .c  om
import java.util.Iterator;
import java.util.LinkedList;

public class Main {

   public static void main(String[] args) {
      // create a LinkedList
      LinkedList<String> list = new LinkedList<String>();

      // add some elements
      list.add("Hello");
      list.add("from java2s.com");
      list.add("10");

      // print the list
      System.out.println("LinkedList:" + list);

      // set Iterator as descending
      Iterator x = list.descendingIterator();

      // print list with descending order
      while (x.hasNext()) {
         System.out.println(x.next());
      }
   }
}

The code above generates the following result.