Package elemental2.core
Interface Generator<VALUE,UNUSED_RETURN_T,UNUSED_NEXT_T>
-
- All Superinterfaces:
JsIterable<VALUE>
,JsIterator<VALUE,java.lang.Object,java.lang.Object>
,JsIteratorIterable<VALUE>
@JsType(isNative=true, namespace="<global>") public interface Generator<VALUE,UNUSED_RETURN_T,UNUSED_NEXT_T> extends JsIteratorIterable<VALUE>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description JsIIterableResult<VALUE>
next()
JsIIterableResult<VALUE>
next(java.lang.Object value)
JsIIterableResult<VALUE>
return_(VALUE value)
JsIIterableResult<VALUE>
throw_(java.lang.Object exception)
-
-
-
Method Detail
-
next
JsIIterableResult<VALUE> next()
- Specified by:
next
in interfaceJsIterator<VALUE,UNUSED_RETURN_T,UNUSED_NEXT_T>
-
next
JsIIterableResult<VALUE> next(java.lang.Object value)
- Specified by:
next
in interfaceJsIterator<VALUE,UNUSED_RETURN_T,UNUSED_NEXT_T>
-
return_
@JsMethod(name="return") JsIIterableResult<VALUE> return_(VALUE value)
-
throw_
@JsMethod(name="throw") JsIIterableResult<VALUE> throw_(java.lang.Object exception)
-
-