UNPKG

typesforbukkit

Version:

Types For Bukkit

9 lines 294 B
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; } }