Class ForStatement

java.lang.Object
com.google.api.generator.engine.ast.ForStatement
All Implemented Interfaces:
AstNode, Statement

public abstract class ForStatement extends Object implements Statement
  • Constructor Details

    • ForStatement

      public ForStatement()
  • Method Details

    • localVariableExpr

      public abstract VariableExpr localVariableExpr()
    • collectionExpr

      public abstract Expr collectionExpr()
    • body

      public abstract com.google.common.collect.ImmutableList<Statement> body()
    • accept

      public void accept(AstNodeVisitor visitor)
      Description copied from interface: AstNode
      Writes the syntatically-correct Java code representation of this node.
      Specified by:
      accept in interface AstNode
      Specified by:
      accept in interface Statement
    • builder

      public static ForStatement.Builder builder()