Interface ResolvedParameter
-
public interface ResolvedParameterThe resolved representation of a parameter in the context of a type reference. Consider for instance this methodinterface Foo<T> { def void foo(T arg) }In the context of the type referenceFoo<String>, the parameterarghas the typeString- Since:
- 2.7
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ParameterDeclarationgetDeclaration()TypeReferencegetResolvedType()
-
-
-
Method Detail
-
getDeclaration
ParameterDeclaration getDeclaration()
- Returns:
- the declaration being
resolved
-
getResolvedType
TypeReference getResolvedType()
- Returns:
- the
resolvedtype of the parameter
-
-