mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-18 12:03:50 +07:00
ad9486dbf7
(cherry picked from commit c812622e14b3cb86ec18cedd406118789abb2e83)
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;
|
|
}
|
|
}
|
|
} |