UNPKG
typesforbukkit
Version:
latest (1.4.1)
1.4.1
1.4.0
1.3.0
1.2.1
1.2.0
1.1.2
1.1.1
1.1.0
1.0.0
Types For Bukkit
typesforbukkit
/
external
/
java
/
util
/
Iterator.ts
9 lines
•
294 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
namespace java
.util
{ export interface Iterator<E> {
/** @description Returns true if the iteration has more elements. */
hasNext
() : boolean;
/** @description Returns the next element in the iteration. */
next
() : E;
remove
() : void; } }