I\'m trying and failing to deserialize an enum with Jackson 2.5.4, and I don\'t quite see my case out there. My input strings are camel case, and I want to simply map to sta
@JsonCreator public static Status forValue(String name) { return EnumUtil.getEnumByNameIgnoreCase(Status.class, name); }
Adding this static method would resolve your problem of deserializing