Package io.sundr.model
Class For
- java.lang.Object
-
- io.sundr.model.For
-
- All Implemented Interfaces:
Node,Renderable,Statement
public class For extends Object implements Statement
-
-
Field Summary
-
Fields inherited from interface io.sundr.model.Node
AT, CB, CC, CLP, COLN, COMA, CP, DOT, DQ, EMPTY, EQ, EXTENDS, GT, IMPLEMENTS, INDENT, JAVA_LANG, JAVA_LANG_ENUM, JAVA_LANG_OBJECT, JAVA_LANG_STRING, LT, NEWLINE, NEWLINE_PATTERN, OB, OC, OP, Q, SEMICOLN, SEMICOLN_SUFFIX_PATTERN, SPACE, STAR, THROWS, VARARG
-
-
Constructor Summary
Constructors Constructor Description For(Expression init, Expression compare, Expression update, Statement body)For(List<Expression> init, Expression compare, List<Expression> update, Statement body)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StatementgetBody()ExpressiongetCompare()List<Expression>getInit()List<Expression>getUpdate()Stringrender()Render the type into aStringfor the purpose of code generation.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface io.sundr.model.Renderable
tab
-
Methods inherited from interface io.sundr.model.Statement
renderStatement
-
-
-
-
Constructor Detail
-
For
public For(List<Expression> init, Expression compare, List<Expression> update, Statement body)
-
For
public For(Expression init, Expression compare, Expression update, Statement body)
-
-
Method Detail
-
getInit
public List<Expression> getInit()
-
getCompare
public Expression getCompare()
-
getUpdate
public List<Expression> getUpdate()
-
getBody
public Statement getBody()
-
render
public String render()
Description copied from interface:RenderableRender the type into aStringfor the purpose of code generation. This is slightly different from the `toString()` method as `toString()` is mostly needed for logging / debugging and should be idempotent. Regarding idempotency this method may yield different result based on the context it is used even if the internal state of the object does not change. An example of such case, is a reference to class that may change based on the package from which it's refenced.- Specified by:
renderin interfaceRenderable- Returns:
- the
Stringrepresentation of the object as it's meant to appear in the generated code.
-
-