Uses of Interface
io.sundr.model.Statement
-
-
Uses of Statement in io.sundr.model
Subinterfaces of Statement in io.sundr.model Modifier and Type Interface Description interfaceExpressionOrStatementClasses in io.sundr.model that implement Statement Modifier and Type Class Description classAssignclassBlockclassBreakclassContinueclassDeclareclassDoclassForclassForeachclassIfclassLambdaclassMethodCallclassReturnclassStringStatementclassSwitchclassWhileMethods in io.sundr.model that return Statement Modifier and Type Method Description StatementFor. getBody()StatementForeach. getBody()StatementDo. getStatement()StatementIf. getStatement()StatementLambda. getStatement()StatementWhile. getStatement()default StatementExpression. ret()static StatementStatement. ret(Expression expression)Methods in io.sundr.model that return types with arguments of type Statement Modifier and Type Method Description Optional<Statement>If. getElseStatement()List<Statement>Block. getStatements()Methods in io.sundr.model with parameters of type Statement Modifier and Type Method Description static LambdaExpression. lamba(Property parameter, Statement statement)Constructors in io.sundr.model with parameters of type Statement Constructor Description Block(Statement... statements)Do(Expression condition, Statement statement)For(Expression init, Expression compare, Expression update, Statement body)For(List<Expression> init, Expression compare, List<Expression> update, Statement body)Foreach(Declare declare, Expression expression, Statement body)Foreach(Property declarationProperty, Expression expression, Statement body)Foreach(Property declarationProperty, Property expressionProperty, Statement body)If(Expression condition, Statement statement)If(Expression condition, Statement statement, Statement elseStatement)If(Expression condition, Statement statement, Optional<Statement> elseStatement)Lambda(String parameter, Statement value)Lambda(List<String> parameters, Statement statement)While(Expression condition, Statement statement)Constructor parameters in io.sundr.model with type arguments of type Statement Constructor Description Block(List<Statement> statements)If(Expression condition, Statement statement, Optional<Statement> elseStatement)
-