javapoet-dsl / com.mostlycertain.javapoetdsl / CodeBuilder / variableDecl

variableDecl

fun variableDecl(type: TypeName, name: String, initializer: CodeExpression? = null, final: Boolean = false): Unit
fun variableDecl(type: Type, name: String, initializer: CodeExpression? = null, final: Boolean = false): Unit
fun variableDecl(type: KClass<*>, name: String, initializer: CodeExpression? = null, final: Boolean = false): Unit

Declare a variable.

Parameters

type - type of the variable

name - name of the variable

initializer - expression to initialize the variable

final - true to declare the variable final

See Also

v