Generator

interface Generator<T : Any>

Generator of value for specific type.

Author

Matthias Geisler

Parameters

T

the type which the Generator is referring to.

Functions

generate
Link copied to clipboard
abstract fun generate(): T
Generates a instance of given type.