Package org.mapstruct.ap.spi
Class PrefixEnumTransformationStrategy
- java.lang.Object
-
- org.mapstruct.ap.spi.PrefixEnumTransformationStrategy
-
- All Implemented Interfaces:
EnumTransformationStrategy
public class PrefixEnumTransformationStrategy extends java.lang.Object implements EnumTransformationStrategy
- Since:
- 1.4
-
-
Constructor Summary
Constructors Constructor Description PrefixEnumTransformationStrategy()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetStrategyName()The name of the strategy.java.lang.Stringtransform(java.lang.String value, java.lang.String configuration)Transform the given value by using the givenconfiguration.-
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.spi.EnumTransformationStrategy
init
-
-
-
-
Method Detail
-
getStrategyName
public java.lang.String getStrategyName()
Description copied from interface:EnumTransformationStrategyThe name of the strategy.- Specified by:
getStrategyNamein interfaceEnumTransformationStrategy- Returns:
- the name of the strategy, never
null
-
transform
public java.lang.String transform(java.lang.String value, java.lang.String configuration)Description copied from interface:EnumTransformationStrategyTransform the given value by using the givenconfiguration.- Specified by:
transformin interfaceEnumTransformationStrategy- Parameters:
value- the value that should be transformedconfiguration- the configuration that should be used for the transformation- Returns:
- the transformed value after applying the configuration
-
-