Class ResolvedMethod
- java.lang.Object
-
- de.quantummaid.reflectmaid.resolver.ResolvedMethod
-
public final class ResolvedMethod extends Object
-
-
Constructor Summary
Constructors Constructor Description ResolvedMethod()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Stringdescribe()booleanhasParameters(List<ResolvedType> parameters)booleanisPublic()Methodmethod()Stringname()List<ResolvedParameter>parameters()static ResolvedMethodresolveMethod(Method method, ClassType context)static List<ResolvedMethod>resolveMethodsWithResolvableTypeVariables(ClassType fullType)Optional<ResolvedType>returnType()
-
-
-
Method Detail
-
resolveMethodsWithResolvableTypeVariables
public static List<ResolvedMethod> resolveMethodsWithResolvableTypeVariables(ClassType fullType)
-
resolveMethod
public static ResolvedMethod resolveMethod(Method method, ClassType context)
-
returnType
public Optional<ResolvedType> returnType()
-
hasParameters
public boolean hasParameters(List<ResolvedType> parameters)
-
parameters
public List<ResolvedParameter> parameters()
-
method
public Method method()
-
name
public String name()
-
isPublic
public boolean isPublic()
-
describe
public String describe()
-
-