JVarDeclaration |
JVarDeclaration.add(java.lang.String name) |
Add another item to this declaration.
|
JVarDeclaration |
JVarDeclaration.add(java.lang.String name,
JExpr init) |
Add another item to this declaration.
|
JVarDeclaration |
JClassDefSection.field(int mods,
java.lang.Class<?> type,
java.lang.String name) |
Add a field to this type.
|
JVarDeclaration |
JClassDefSection.field(int mods,
java.lang.Class<?> type,
java.lang.String name,
JExpr init) |
Add a field to this type.
|
JVarDeclaration |
JClassDefSection.field(int mods,
java.lang.String type,
java.lang.String name) |
Add a field to this type.
|
JVarDeclaration |
JClassDefSection.field(int mods,
java.lang.String type,
java.lang.String name,
JExpr init) |
Add a field to this type.
|
JVarDeclaration |
JClassDefSection.field(int mods,
JType type,
java.lang.String name) |
Add a field to this type.
|
JVarDeclaration |
JClassDefSection.field(int mods,
JType type,
java.lang.String name,
JExpr init) |
Add a field to this type.
|
JVarDeclaration |
JFor.init(int mods,
java.lang.Class<?> type,
java.lang.String name,
JExpr value) |
Add a loop initializer.
|
JVarDeclaration |
JFor.init(int mods,
java.lang.String type,
java.lang.String name,
JExpr value) |
Add a loop initializer.
|
JVarDeclaration |
JFor.init(int mods,
JType type,
java.lang.String name,
JExpr value) |
Add a loop initializer.
|
JVarDeclaration |
JBlock.var(int mods,
java.lang.Class<?> type,
java.lang.String name) |
Insert a local variable declaration at this point.
|
JVarDeclaration |
JBlock.var(int mods,
java.lang.Class<?> type,
java.lang.String name,
JExpr value) |
Insert a local variable declaration at this point.
|
JVarDeclaration |
JBlock.var(int mods,
java.lang.String type,
java.lang.String name) |
Insert a local variable declaration at this point.
|
JVarDeclaration |
JBlock.var(int mods,
java.lang.String type,
java.lang.String name,
JExpr value) |
Insert a local variable declaration at this point.
|
JVarDeclaration |
JBlock.var(int mods,
JType type,
java.lang.String name) |
Insert a local variable declaration at this point.
|
JVarDeclaration |
JBlock.var(int mods,
JType type,
java.lang.String name,
JExpr value) |
Insert a local variable declaration at this point.
|
JVarDeclaration |
JTry.with(int mods,
java.lang.Class<? extends java.lang.AutoCloseable> type,
java.lang.String var,
JExpr init) |
Add a resource for try -with-resources constructs.
|
JVarDeclaration |
JTry.with(int mods,
java.lang.String type,
java.lang.String var,
JExpr init) |
Add a resource for try -with-resources constructs.
|
JVarDeclaration |
JTry.with(int mods,
JType type,
java.lang.String var,
JExpr init) |
Add a resource for try -with-resources constructs.
|