Implement a new strategy using the name of the enum constant. The conversion would be between Enum and String/Character. Example: ```java public enum Gender { MALE, // Will convert to M FEMALE // Will convert to F ; } ```
Implement a new strategy using the name of the enum constant. The conversion would be between Enum and String/Character.
Example: