ai.evolv.generics.GenericClass Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ascend-sdk Show documentation
Show all versions of ascend-sdk Show documentation
SDK to interact with the Ascend product.
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