public final class RepeatUntilBlock extends Object implements Block
Constructor and Description |
---|
RepeatUntilBlock(int repeatTimes,
Block block,
Supplier<Boolean> toQuit) |
Modifier and Type | Method and Description |
---|---|
void |
forAllPossiblePieces(Consumer<AbstractPiece> consumer)
Calls consumer for each Piece:
- in no particular order
- potentially calling multiple times on same Piece
- even if Piece might never be returned in the iterator
- it will be called at least once for every piece that is
going to be returned by iterator
Can be used for static analysis/introspection of the block,
without actually executing them.
|
PieceCount |
getPieceCount()
How many pieces are in this block.
|
Iterator<AbstractPiece> |
iterator()
Create iterator representing all pieces needed to be executed
in this block.
|
String |
toString() |
static Block |
unlimited(Block block,
Supplier<Boolean> toQuit)
Repeat unlimited number of times, until toQuit supplier returns true.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
forEach, spliterator
public static Block unlimited(Block block, Supplier<Boolean> toQuit)
public Iterator<AbstractPiece> iterator()
Block
iterator
in interface Iterable<AbstractPiece>
iterator
in interface Block
public void forAllPossiblePieces(Consumer<AbstractPiece> consumer)
Block
forAllPossiblePieces
in interface Block
public PieceCount getPieceCount()
Block
getPieceCount
in interface Block
Copyright © 2011-2020 The Apache Software Foundation. All Rights Reserved.