12 lines
261 B
Java
12 lines
261 B
Java
package org.hsqldb.lib;
|
|
|
|
import java.util.NoSuchElementException;
|
|
|
|
public interface IntLookup {
|
|
int add(int i, int i2);
|
|
|
|
int lookupFirstEqual(int i) throws NoSuchElementException;
|
|
|
|
int lookupFirstGreaterEqual(int i) throws NoSuchElementException;
|
|
}
|