17 lines
324 B
Java
17 lines
324 B
Java
package reflection.generics;
|
|
|
|
import java.util.Iterator;
|
|
|
|
public interface GenericInterface002<K> {
|
|
|
|
public Iterator<K> iterator();
|
|
|
|
public void processThem(String... strings);
|
|
|
|
<E extends RuntimeException> void genericThrow() throws E;
|
|
|
|
void checkMe() throws SecurityException, NoSuchFieldException;
|
|
|
|
|
|
}
|