SourceTermAnalysisSystem_vue/node_modules/jsts/java/util/Iterator.js
2026-05-15 10:22:44 +08:00

25 lines
504 B
JavaScript

/**
* @see http://download.oracle.com/javase/6/docs/api/java/util/Iterator.html
* @constructor
* @private
*/
export default class Iterator {
/**
* Returns true if the iteration has more elements.
* @return {boolean}
*/
hasNext() {}
/**
* Returns the next element in the iteration.
* @return {Object}
*/
next() {}
/**
* Removes from the underlying collection the last element returned by the
* iterator (optional operation).
*/
remove() {}
}