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

com.g2forge.alexandria.reflection.object.IJavaConcreteReflection Maven / Gradle / Ivy

Go to download

Generic type safe reflection library, which adds significant usability over the standard Java runtime.

There is a newer version: 0.0.18
Show newest version
package com.g2forge.alexandria.reflection.object;

import com.g2forge.alexandria.generic.type.java.structure.IJavaClassStructure;
import com.g2forge.alexandria.generic.type.java.type.IJavaConcreteType;
import com.g2forge.alexandria.generic.type.java.typed.IJavaGenericTyped;
import com.g2forge.alexandria.metadata.annotation.IJavaAnnotated;

public interface IJavaConcreteReflection extends IJavaGenericTyped, IJavaAnnotated, IJavaClassStructure, IJavaTypeReflection, IJavaFieldReflection, IJavaMethodReflection, IJavaConstructorReflection>, IJavaTypeReflection {
	@Override
	public IJavaConcreteType getType();

	public T newInstance();

	public IJavaConcreteReflection toNonPrimitive();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy