2026-03-17 13:31:18 -07:00

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);
}