18 lines
354 B
Java
18 lines
354 B
Java
package org.hsqldb.lib;
|
|
|
|
import java.util.NoSuchElementException;
|
|
|
|
public interface Iterator {
|
|
boolean hasNext();
|
|
|
|
Object next() throws NoSuchElementException;
|
|
|
|
int nextInt() throws NoSuchElementException;
|
|
|
|
long nextLong() throws NoSuchElementException;
|
|
|
|
void remove() throws NoSuchElementException;
|
|
|
|
void setValue(Object obj);
|
|
}
|