123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- import { JavaObject, cast_java_lang_Object } from '../../../java/lang/JavaObject';
- import { IllegalStateException, cast_java_lang_IllegalStateException } from '../../../java/lang/IllegalStateException';
- import { JavaMapEntry, cast_java_util_Map_Entry } from '../../../java/util/JavaMapEntry';
- import { JavaIterator, cast_java_util_Iterator } from '../../../java/util/JavaIterator';
- import { NoSuchElementException, cast_java_util_NoSuchElementException } from '../../../java/util/NoSuchElementException';
- import { AVLMapSubMap, cast_de_nrw_schule_svws_core_adt_map_AVLMapSubMap } from '../../../core/adt/map/AVLMapSubMap';
- export class AVLMapSubEntrySetIterator<K, V> extends JavaObject implements JavaIterator<JavaMapEntry<K, V>> {
- private readonly _sub : AVLMapSubMap<K, V>;
- private _current : JavaMapEntry<K, V> | null = null;
- private _next : JavaMapEntry<K, V> | null = null;
- /**
- * Erstellt einen neuen ENTRY-Iterator für die angegebene {@link AVLMapSubMap} im gültigen
- * {@link AVLMapIntervall}.
- *
- * @param sub Die {@link AVLMapSubMap} auf der operiert wird.
- */
- constructor(sub : AVLMapSubMap<K, V>) {
- super();
- this._sub = sub;
- this._current = null;
- this._next = this._sub.firstEntry();
- }
- public next() : JavaMapEntry<K, V> {
- if (this._next === null)
- throw new NoSuchElementException()
- this._current = this._next;
- this._next = this._sub.higherEntry(this._next.getKey());
- return this._current;
- }
- public hasNext() : boolean {
- return this._next !== null;
- }
- public remove() : void {
- if (this._current === null)
- throw new IllegalStateException()
- this._sub.remove(this._current.getKey());
- this._current = null;
- }
- isTranspiledInstanceOf(name : string): boolean {
- return ['java.util.Iterator', 'de.nrw.schule.svws.core.adt.map.AVLMapSubEntrySetIterator'].includes(name);
- }
- }
- export function cast_de_nrw_schule_svws_core_adt_map_AVLMapSubEntrySetIterator<K, V>(obj : unknown) : AVLMapSubEntrySetIterator<K, V> {
- return obj as AVLMapSubEntrySetIterator<K, V>;
- }
|