Example usage for java.util Vector listIterator

List of usage examples for java.util Vector listIterator

Introduction

In this page you can find the example usage for java.util Vector listIterator.

Prototype

public synchronized ListIterator<E> listIterator(int index) 

Source Link

Document

Returns a list iterator over the elements in this list (in proper sequence), starting at the specified position in the list.

Usage

From source file:Main.java

public static void main(String[] args) {
    Vector<Integer> vec = new Vector<Integer>();

    vec.add(4);/*  w w w  .j  a  v  a2  s . c o m*/
    vec.add(3);
    vec.add(2);
    vec.add(1);

    System.out.println(vec);

    ListIterator<Integer> it = vec.listIterator(2);
    while (it.hasNext()) {
        System.out.println(it.next());
    }
}