ERROR - java.lang.IllegalArgumentException: No enum constant at java.lang.Enum.valueOf(Enum.java:238)

Error

java.lang.IllegalArgumentException: No enum constant at java.lang.Enum.valueOf(Enum.java:238)


Error Type


RunTime


Sample Code

xyz.setEnumField(SampleEnum.valueOf(value));

Cause

Passed value doesn't match any of the enumeration object value.

Resolution

Make sure that the enumeration "SampleEnum" have the object constant with the value "value". If not , either pass the correct value or declare one object constant with the new value.