* @param count the number of times
* @return the builder
*/
public LoopDefinition loop(int count) {
LoopDefinition loop = getNodeFactory().createLoop();
loop.setExpression(new ConstantExpression(Integer.toString(count)));
addOutput(loop);
return loop;
}