import { JavaObject, cast_java_lang_Object } from '../../../java/lang/JavaObject'; import { ConcurrentModificationException, cast_java_util_ConcurrentModificationException } from '../../../java/util/ConcurrentModificationException'; import { LinkedCollection, cast_de_nrw_schule_svws_core_adt_collection_LinkedCollection } from '../../../core/adt/collection/LinkedCollection'; import { JavaIterator, cast_java_util_Iterator } from '../../../java/util/JavaIterator'; import { NoSuchElementException, cast_java_util_NoSuchElementException } from '../../../java/util/NoSuchElementException'; import { LinkedCollectionElement, cast_de_nrw_schule_svws_core_adt_collection_LinkedCollectionElement } from '../../../core/adt/collection/LinkedCollectionElement'; import { UnsupportedOperationException, cast_java_lang_UnsupportedOperationException } from '../../../java/lang/UnsupportedOperationException'; export class LinkedCollectionDescendingIterator extends JavaObject implements JavaIterator { private _collection : LinkedCollection; private _current : LinkedCollectionElement | null = null; private readonly _expModCount : number; /** * Erzeugt einen neuen LinkedCollectionIterator. Dabei wird die Referenz auf * die {@link LinkedCollection} übergeben. * * @param collection die zum Iterator zugehörige {@link LinkedCollection} */ constructor(collection : LinkedCollection) { super(); this._collection = collection; this._expModCount = collection._modCount; this._current = collection._tail; } public hasNext() : boolean { if (this._collection._modCount !== this._expModCount) throw new ConcurrentModificationException() return (this._current !== null); } public next() : E { if (this._collection._modCount !== this._expModCount) throw new ConcurrentModificationException() if (this._current === null) throw new NoSuchElementException() let result : E = this._current.getValue(); this._current = this._current.getPrev(); return result; } public remove() : void { throw new UnsupportedOperationException("remove") } isTranspiledInstanceOf(name : string): boolean { return ['de.nrw.schule.svws.core.adt.collection.LinkedCollectionDescendingIterator', 'java.util.Iterator'].includes(name); } } export function cast_de_nrw_schule_svws_core_adt_collection_LinkedCollectionDescendingIterator(obj : unknown) : LinkedCollectionDescendingIterator { return obj as LinkedCollectionDescendingIterator; }