Interface ParametersSource
public interface ParametersSource
Interface providing access to the method, containing class and domain type as source object for parameter
 descriptors.
- Since:
- 3.2.1
- Author:
- Mark Paluch
- 
Method SummaryModifier and TypeMethodDescriptionClass<?>static ParametersSourceCreate a new parameter source for the givenMethod.static ParametersSourceof(RepositoryMetadata metadata, Method method) Create a new parameter source for the givenMethodin the context ofRepositoryMetadata.
- 
Method Details- 
ofCreate a new parameter source for the givenMethod.- Parameters:
- method- the method to use.
- Returns:
- a new parameter source for the given Method.
 
- 
ofCreate a new parameter source for the givenMethodin the context ofRepositoryMetadata.- Parameters:
- method- the method to use.
- Returns:
- a new parameter source for the given Method.
 
- 
getContainingClassClass<?> getContainingClass()- Returns:
- the class that contains the getMethod().
 
- 
getMethodMethod getMethod()- Returns:
- the method for which the parameter source is defined.
 
- 
getDomainTypeInformationTypeInformation<?> getDomainTypeInformation()- Returns:
- the domain type associated with the parameter source.
 
 
-