Class URLToStringConversion
- java.lang.Object
-
- org.mapstruct.ap.internal.conversion.SimpleConversion
-
- org.mapstruct.ap.internal.conversion.URLToStringConversion
-
- All Implemented Interfaces:
ConversionProvider
public class URLToStringConversion extends SimpleConversion
- Author:
- Adam Szatyin
-
-
Constructor Summary
Constructors Constructor Description URLToStringConversion()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected List<Type>getFromConversionExceptionTypesβ(ConversionContext conversionContext)protected Set<Type>getFromConversionImportTypesβ(ConversionContext conversionContext)Returns a set with imported types of the "from" conversion.protected StringgetFromExpressionβ(ConversionContext conversionContext)Returns the conversion string from target to source.protected StringgetToExpressionβ(ConversionContext conversionContext)Returns the conversion string from source to target.-
Methods inherited from class org.mapstruct.ap.internal.conversion.SimpleConversion
from, getRequiredHelperMethods, getToConversionExceptionTypes, getToConversionImportTypes, to
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.mapstruct.ap.internal.conversion.ConversionProvider
getRequiredHelperFields
-
-
-
-
Method Detail
-
getToExpression
protected String getToExpressionβ(ConversionContext conversionContext)
Description copied from class:SimpleConversionReturns the conversion string from source to target. The placeholder<SOURCE>can be used to represent a reference to the source value.- Specified by:
getToExpressionin classSimpleConversion- Parameters:
conversionContext- A context providing optional information required for creating the conversion.- Returns:
- The conversion string from source to target
-
getFromExpression
protected String getFromExpressionβ(ConversionContext conversionContext)
Description copied from class:SimpleConversionReturns the conversion string from target to source. The placeholder<SOURCE>can be used to represent a reference to the target value.- Specified by:
getFromExpressionin classSimpleConversion- Parameters:
conversionContext- ConversionContext providing optional information required for creating the conversion.- Returns:
- The conversion string from target to source
-
getFromConversionImportTypes
protected Set<Type> getFromConversionImportTypesβ(ConversionContext conversionContext)
Description copied from class:SimpleConversionReturns a set with imported types of the "from" conversion. Defaults to an empty set; can be overridden in sub-classes to return the required types.- Overrides:
getFromConversionImportTypesin classSimpleConversion- Parameters:
conversionContext- the conversion context- Returns:
- conversion types required in the "from" conversion
-
getFromConversionExceptionTypes
protected List<Type> getFromConversionExceptionTypesβ(ConversionContext conversionContext)
- Overrides:
getFromConversionExceptionTypesin classSimpleConversion
-
-