mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
23 lines
438 B
Java
23 lines
438 B
Java
import java.util.*;
|
|
|
|
class HT<O> {
|
|
private Iterator<O> getIterator(int type, int count) {
|
|
return new Enumerator<>(type, true);
|
|
}
|
|
|
|
private class Enumerator<T> implements Iterator<T> {
|
|
|
|
public Enumerator(int type, boolean b) {
|
|
}
|
|
|
|
@Override
|
|
public boolean hasNext() {
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public T next() {
|
|
return null;
|
|
}
|
|
}
|
|
} |