All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.konohiroaki.deepinitializer.BaseFieldInitializer Maven / Gradle / Ivy

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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy