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

uk.co.caeldev.builder4test.Field Maven / Gradle / Ivy

There is a newer version: 0.2.1
Show newest version
package uk.co.caeldev.builder4test;

public class Field {

    private T defaultValue;

    public Field() {
    }

    public Field(T defaultValue) {
        this.defaultValue = defaultValue;
    }

    public T getDefaultValue() {
        return defaultValue;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy