Uses of Interface
com.regnosys.rosetta.generator.TargetLanguageRepresentation
Packages that use TargetLanguageRepresentation
Package
Description
-
Uses of TargetLanguageRepresentation in com.regnosys.rosetta.generator
Classes in com.regnosys.rosetta.generator that implement TargetLanguageRepresentation -
Uses of TargetLanguageRepresentation in com.regnosys.rosetta.generator.java.statement
Subinterfaces of TargetLanguageRepresentation in com.regnosys.rosetta.generator.java.statementModifier and TypeInterfaceDescriptioninterfaceBased on the Java specification: https://docs.oracle.com/javase/specs/jls/se11/html/jls-15.html#jls-LambdaBody The body of a lambda expression can be either - an expression, as in `x -> 42` - see `JavaExpression`, or - a block statement, as in `x -> { return 42; }` - see `JavaBlock`.Classes in com.regnosys.rosetta.generator.java.statement that implement TargetLanguageRepresentationModifier and TypeClassDescriptionclassBased on the Java specification: https://docs.oracle.com/javase/specs/jls/se11/html/jls-15.html#jls-Assignment Example: `x = 42;` See `JavaStatement` for more documentation.classBased on the Java specification: https://docs.oracle.com/javase/specs/jls/se11/html/jls-14.html#jls-Block Example: ``` { int x = 42; return x; } ``` See `JavaStatement` for more documentation.classBased on the Java specification: https://docs.oracle.com/javase/specs/jls/se11/html/jls-14.html#jls-ExpressionStatement Example: `list.add(42);` See `JavaStatement` for more documentation.classBased on the Java specification: https://docs.oracle.com/javase/specs/jls/se11/html/jls-14.html#jls-IfThenElseStatement Example: ``` if (true) { return 42; } else { return -1; } ``` See `JavaStatement` for more documentation.classBased on the Java specification: https://docs.oracle.com/javase/specs/jls/se11/html/jls-14.html#jls-IfThenStatement Example: ``` if (true) { return 42; } ``` See `JavaStatement` for more documentation.classBased on the Java specification: https://docs.oracle.com/javase/specs/jls/se11/html/jls-14.html#jls-LocalVariableDeclarationStatement Examples: - `final int x = 42;` - `float y;` See `JavaStatement` for more documentation.classBased on the Java specification: https://docs.oracle.com/javase/specs/jls/se11/html/jls-14.html#jls-ReturnStatement Example: `return foo + 1;` See `JavaStatement` for more documentation.classA representation of a statement in Java.class -
Uses of TargetLanguageRepresentation in com.regnosys.rosetta.generator.java.statement.builder
Classes in com.regnosys.rosetta.generator.java.statement.builder that implement TargetLanguageRepresentationModifier and TypeClassDescriptionclassBased 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.classAn arbitrary Java expression.classA reference to the Java `this` keyword.classA Java variable. -
Uses of TargetLanguageRepresentation in com.regnosys.rosetta.generator.java.types
Classes in com.regnosys.rosetta.generator.java.types that implement TargetLanguageRepresentation