java.util
Interface ListIterator

All Superinterfaces:
Iterator

public interface ListIterator
extends Iterator


Method Summary
 void add(Object var0)
           
 boolean hasNext()
           
 boolean hasPrevious()
           
 Object next()
           
 int nextIndex()
           
 Object previous()
           
 int previousIndex()
           
 void remove()
           
 void set(Object var0)
           
 

Method Detail

add

void add(Object var0)

hasNext

boolean hasNext()
Specified by:
hasNext in interface Iterator

hasPrevious

boolean hasPrevious()

next

Object next()
Specified by:
next in interface Iterator

nextIndex

int nextIndex()

previous

Object previous()

previousIndex

int previousIndex()

remove

void remove()
Specified by:
remove in interface Iterator

set

void set(Object var0)


Copyright © 2006-2010 OSGi Alliance. All Rights Reserved.