public interface Block extends Iterable<AbstractPiece>
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.
|
forEach, spliterator
Iterator<AbstractPiece> iterator()
iterator
in interface Iterable<AbstractPiece>
void forAllPossiblePieces(Consumer<AbstractPiece> consumer)
PieceCount getPieceCount()
Copyright © 2011-2020 The Apache Software Foundation. All Rights Reserved.