
| Constructor and Description |
|---|
ForgedMethod(String name,
ForgedMethod forgedMethod)
creates a new ForgedMethod with the same arguments but with a new name
|
ForgedMethod(String name,
Type sourceType,
Type returnType,
MapperConfiguration mapperConfiguration,
ExecutableElement positionHintElement,
List<Parameter> additionalParameters,
ParameterProvidedMethods parameterProvidedMethods)
Creates a new forged method with the given name.
|
ForgedMethod(String name,
Type sourceType,
Type returnType,
MapperConfiguration mapperConfiguration,
ExecutableElement positionHintElement,
List<Parameter> additionalParameters,
ParameterProvidedMethods parameterProvidedMethods,
ForgedMethodHistory history,
MappingOptions mappingOptions,
boolean forgedNameBased)
Creates a new forged method with the given name.
|
| Modifier and Type | Method and Description |
|---|---|
void |
addThrownTypes(List<Type> thrownTypesToAdd) |
boolean |
equals(Object o) |
Accessibility |
getAccessibility()
Returns the
Accessibility of this method. |
List<Parameter> |
getContextParameters()
returns the list of mapping context parameters, i.e. those parameters that are annotated with
Context. |
ParameterProvidedMethods |
getContextProvidedMethods() |
Type |
getDeclaringMapper()
Returns the mapper type declaring this method if it is not declared by the mapper interface currently processed
but by another mapper imported via
Mapper#users(). |
Type |
getDefiningType() |
ExecutableElement |
getExecutable() |
ForgedMethodHistory |
getHistory() |
MapperConfiguration |
getMapperConfiguration() |
MappingOptions |
getMappingOptions() |
Parameter |
getMappingTargetParameter()
Returns the parameter designated as mapping target (if present)
MappingTarget |
String |
getName()
Returns then name of the method.
|
List<String> |
getParameterNames() |
List<Parameter> |
getParameters()
In contrast to
Method.getSourceParameters() this method returns all parameters |
Type |
getResultType()
Returns the type of the result.
|
Type |
getReturnType()
Returns the return type of the method
|
List<Parameter> |
getSourceParameters()
returns the list of 'true' source parameters excluding the parameter(s) that are designated as target, target
type or context parameter.
|
Parameter |
getTargetTypeParameter()
Returns the parameter designated as target type (if present)
TargetType |
List<Type> |
getThrownTypes()
Returns all exceptions thrown by this method
|
int |
hashCode() |
boolean |
isDefault()
Whether this method is Java 8 default method
|
boolean |
isForgedNamedBased() |
boolean |
isLifecycleCallbackMethod() |
boolean |
isObjectFactory()
object factory mechanism not supported for forged methods
|
boolean |
isStatic()
Whether this method is static or an instance method
|
boolean |
isUpdateMethod() |
boolean |
matches(List<Type> sourceTypes,
Type targetType)
Checks whether the provided sourceType and provided targetType match with the parameter respectively return type
of the method.
|
boolean |
overridesMethod()
Whether this method overrides an abstract method.
|
String |
toString() |
clone, finalize, getClass, notify, notifyAll, wait, wait, waitisMappingTargetAssignableToReturnTypepublic ForgedMethod(String name, Type sourceType, Type returnType, MapperConfiguration mapperConfiguration, ExecutableElement positionHintElement, List<Parameter> additionalParameters, ParameterProvidedMethods parameterProvidedMethods)
name - the (unique name) for this methodsourceType - the source typereturnType - the return type.mapperConfiguration - the mapper configurationpositionHintElement - element used to for reference to the position in the source file.additionalParameters - additional parameters to add to the forged methodparameterProvidedMethods - additional factory/lifecycle methods to consider that are provided by context
parameterspublic ForgedMethod(String name, Type sourceType, Type returnType, MapperConfiguration mapperConfiguration, ExecutableElement positionHintElement, List<Parameter> additionalParameters, ParameterProvidedMethods parameterProvidedMethods, ForgedMethodHistory history, MappingOptions mappingOptions, boolean forgedNameBased)
name - the (unique name) for this methodsourceType - the source typereturnType - the return type.mapperConfiguration - the mapper configurationpositionHintElement - element used to for reference to the position in the source file.additionalParameters - additional parameters to add to the forged methodparameterProvidedMethods - additional factory/lifecycle methods to consider that are provided by context
parametershistory - a parent forged method if this is a forged method within a forged methodmappingOptions - the mapping options for this methodforgedNameBased - forges a name based (matched) mapping methodpublic ForgedMethod(String name, ForgedMethod forgedMethod)
name - the new nameforgedMethod - existing forge methodpublic boolean matches(List<Type> sourceTypes, Type targetType)
Methodpublic Type getDeclaringMapper()
MethodMapper#users().getDeclaringMapper in interface Methodpublic String getName()
Methodpublic List<Parameter> getParameters()
MethodMethod.getSourceParameters() this method returns all parametersgetParameters in interface Methodpublic List<Parameter> getSourceParameters()
MethodgetSourceParameters in interface Methodpublic List<Parameter> getContextParameters()
MethodContext.getContextParameters in interface Methodpublic ParameterProvidedMethods getContextProvidedMethods()
getContextProvidedMethods in interface MethodMethod.getContextParameters() to factory and lifecycle methods provided by them.public Parameter getMappingTargetParameter()
MethodMappingTargetgetMappingTargetParameter in interface Methodpublic Parameter getTargetTypeParameter()
MethodTargetTypegetTargetTypeParameter in interface Methodpublic Accessibility getAccessibility()
MethodAccessibility of this method.getAccessibility in interface MethodAccessibility of this methodpublic Type getReturnType()
MethodgetReturnType in interface Methodpublic List<Type> getThrownTypes()
MethodgetThrownTypes in interface Methodpublic ForgedMethodHistory getHistory()
public boolean isForgedNamedBased()
public Type getResultType()
MethodMappingTarget, or in absence the return type.getResultType in interface Methodpublic List<String> getParameterNames()
getParameterNames in interface Methodpublic boolean overridesMethod()
MethodoverridesMethod in interface Methodpublic ExecutableElement getExecutable()
getExecutable in interface Methodpublic boolean isLifecycleCallbackMethod()
isLifecycleCallbackMethod in interface Methodtrue, if the method represents a mapping lifecycle callback (Before/After mapping method)public boolean isStatic()
Methodpublic boolean isDefault()
Methodpublic Type getDefiningType()
getDefiningType in interface Methodpublic MapperConfiguration getMapperConfiguration()
getMapperConfiguration in interface Methodpublic boolean isUpdateMethod()
isUpdateMethod in interface Methodtrue, if the method is an update method, i.e. it has a parameter annotated with
@MappingTarget.public boolean isObjectFactory()
isObjectFactory in interface Methodpublic MappingOptions getMappingOptions()
getMappingOptions in interface MethodCopyright © 2012-2019 MapStruct Authors; All rights reserved. Released under the Apache Software License 2.0.