Package com.regnosys.rosetta.generator.java.statement.builder


package com.regnosys.rosetta.generator.java.statement.builder
  • Classes
    Class
    Description
    Based on the Java specification: https://docs.oracle.com/javase/specs/jls/se11/html/jls-14.html#jls-Block Example: ``` { int x = 42; x } ``` See `JavaStatementBuilder` for more documentation.
    Based on the Java specification: https://docs.oracle.com/javase/specs/jls/se11/html/jls-15.html#jls-ConditionalExpression Example: `cond ? 42 : x + 1` See `JavaStatementBuilder` for more documentation.
    An arbitrary Java expression.
    Based on the Java specification: https://docs.oracle.com/javase/specs/jls/se11/html/jls-14.html#jls-IfThenElseStatement Example: ``` if (cond) { int x = 42; x } else { -1 } ``` See `JavaStatementBuilder` for more documentation.
    A convenient API for building a Java statement.
    A reference to the Java `this` keyword.
    A Java variable.