Class MappingMethodUtils

java.lang.Object
org.mapstruct.ap.internal.model.source.MappingMethodUtils

public final class MappingMethodUtils extends Object
Utility class for mapping methods.
Author:
Filip Hrisafov
  • Method Details

    • isEnumMapping

      public static boolean isEnumMapping(Method method)
      Checks if the provided method is for enum mapping. A Method is an Enum Mapping method when the
      1. source parameter type and result type are enum types
      2. source parameter type is a String and result type is an enum type
      3. 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