aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/core/src/main/j2me/java/util/ListIterator.java
blob: 3e08d959cde3cfbe37a01adb4215f1457f640833 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package java.util;

public interface ListIterator
    extends Iterator
{
    public boolean hasPrevious();

    public Object previous()
        throws NoSuchElementException;

    public int nextIndex();

    public int previousIndex();

    public void set(Object o)
        throws RuntimeException, ClassCastException, IllegalArgumentException, IllegalStateException;

    public void add(Object o)
        throws RuntimeException, ClassCastException, IllegalArgumentException;
}