niagara-ax/decompiled/com/sun/java/help/search/NonnegativeIntegerGenerator.java
2026-03-17 13:31:18 -07:00

10 lines
184 B
Java

package com.sun.java.help.search;
interface NonnegativeIntegerGenerator {
public static final int END = -1;
int first() throws Exception;
int next() throws Exception;
}