Package org.springframework.data.mapping
Class Parameter<T,P extends PersistentProperty<P>>
java.lang.Object
org.springframework.data.mapping.Parameter<T,P>
- Type Parameters:
T- the type of the parameter
Value object to represent constructor parameters.
- Author:
- Oliver Gierke, Christoph Strobl
-
Constructor Summary
ConstructorsConstructorDescriptionParameter(String name, TypeInformation<T> type, Annotation[] annotations, PersistentEntity<T, P> entity) -
Method Summary
Modifier and TypeMethodDescriptionbooleanorg.springframework.core.annotation.MergedAnnotationsMerged annotations that this parameter is annotated with.getName()Returns the name of the parameter.Returns the raw resolved type of the parameter.Returns the key to be used when looking up a source data structure to populate the actual parameter value.getType()Returns theTypeInformationof the parameter.inthashCode()booleanReturns whether the constructor parameter is equipped with a SpEL expression.
-
Constructor Details
-
Parameter
public Parameter(@Nullable String name, TypeInformation<T> type, Annotation[] annotations, @Nullable PersistentEntity<T, P> entity) Creates a newParameterwith the given name,TypeInformationas well as an array ofAnnotations. Will inspect the annotations for anValueannotation to lookup a key or an SpEL expression to be evaluated.- Parameters:
name- the name of the parameter, can be nulltype- must not be nullannotations- must not be null but can be emptyentity- must not be null.
-
-
Method Details
-
getName
Returns the name of the parameter.- Returns:
-
getType
Returns theTypeInformationof the parameter.- Returns:
-
getAnnotations
public org.springframework.core.annotation.MergedAnnotations getAnnotations()Merged annotations that this parameter is annotated with.- Returns:
- Since:
- 2.5
-
getRawType
Returns the raw resolved type of the parameter.- Returns:
-
getSpelExpression
Returns the key to be used when looking up a source data structure to populate the actual parameter value.- Returns:
-
hasSpelExpression
public boolean hasSpelExpression()Returns whether the constructor parameter is equipped with a SpEL expression.- Returns:
-
equals
-
hashCode
public int hashCode()
-