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

com.github.nill14.utils.init.api.IBeanDescriptor Maven / Gradle / Ivy

package com.github.nill14.utils.init.api;

import java.lang.annotation.Annotation;
import java.lang.reflect.Type;
import java.util.List;
import java.util.Set;

import com.google.common.reflect.TypeToken;

public interface IBeanDescriptor {

	List getFieldDescriptors();

	List getMethodDescriptors();

	List getConstructorDescriptors();

	Set> getInterfaces();

	Set> getDeclaredTypes();

	@Deprecated
	Set getDeclaredQualifiers();

	TypeToken getToken();
	
	Class getRawType();
	
	Type getGenericType();

	boolean canBeInstantiated();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy