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

ai.evolv.generics.GenericClass Maven / Gradle / Ivy

There is a newer version: 0.7.1
Show newest version
package ai.evolv.generics;

public class GenericClass {

    private final Class type;

    public GenericClass(Class type) {
        this.type = type;
    }

    public Class getMyType() {
        return this.type;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy