io.github.konohiroaki.deepinitializer.BaseFieldInitializer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of deep-initializer Show documentation
Show all versions of deep-initializer Show documentation
Initialize deep bean recursively filling with default values.
The newest version!
package io.github.konohiroaki.deepinitializer;
import java.lang.reflect.Field;
/**
* Base class used by all field initializers.
*/
public abstract class BaseFieldInitializer {
/**
* Initializes a field with type T
*/
public abstract T init(Field field);
}