12 lines
244 B
Java
12 lines
244 B
Java
package javax.naming;
|
|
|
|
import java.util.Enumeration;
|
|
|
|
public interface NamingEnumeration extends Enumeration {
|
|
void close() throws NamingException;
|
|
|
|
boolean hasMore() throws NamingException;
|
|
|
|
Object next() throws NamingException;
|
|
}
|