See: Description
| Class | Description |
|---|---|
| GenerateUntil<E> |
Wrap another
Generator such that GenerateUntil.run(Procedure) terminates once
a condition has been satisfied (test after). |
| GenerateWhile<E> |
Wrap another
Generator such that GenerateWhile.run(Procedure) continues
as long as a condition is true (test after). |
| IteratorToGeneratorAdapter<E> |
Adapts an
Iterator to the LoopGenerator interface. |
| LoopGenerator<E> |
Base class for generators that control execution flow, and may need to
stop the generation.
|
| TransformedGenerator<I,E> |
Generator that transforms the elements of another Generator.
|
| UntilGenerate<E> |
Wrap another
Generator such that UntilGenerate.run(Procedure) terminates once
a condition has been satisfied. |
| WhileGenerate<E> |
Wrap another
Generator such that WhileGenerate.run(Procedure) continues
as long as a condition is true (test before). |
Contains code related to Generators that control execution flow.
Copyright © 2003–2014 The Apache Software Foundation. All rights reserved.