9 lines
142 B
Java
9 lines
142 B
Java
|
package org.warp.commonutils.functional;
|
||
|
|
||
|
import java.io.IOException;
|
||
|
|
||
|
public interface IOIntegerSupplier {
|
||
|
|
||
|
int get() throws IOException;
|
||
|
}
|