Class MappingMethodUtils
- java.lang.Object
-
- org.mapstruct.ap.internal.model.source.MappingMethodUtils
-
public final class MappingMethodUtils extends Object
- Author:
- Filip Hrisafov
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static boolean
isEnumMapping(Method method)
Checks if the providedmethod
is for enum mapping.
-
-
-
Method Detail
-
isEnumMapping
public static boolean isEnumMapping(Method method)
Checks if the providedmethod
is for enum mapping. A Method is an Enum Mapping method when the- source parameter type and result type are enum types
- source parameter type is a String and result type is an enum type
- source parameter type is a enum type and result type is a String
- Parameters:
method
- to check- Returns:
true
if the method is for enum mapping,false
otherwise
-
-