FormBinder

class FormBinder<T : Any>(targetClass: KClass<T>)

Form binder system that maps form submission values to Kotlin data classes and Java classes

Constructors

Link copied to clipboard
constructor(targetClass: Class<T>)
constructor(targetClass: KClass<T>)

Types

Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard
fun bind(submissionResult: FormSubmissionResult): T

Binds a FormSubmissionResult to the target data class