I have the enum as:
enum
public enum EnumStatus { PASSED(40L, \"Has Passed\"), AVERAGE(60L, \"Has Average Marks\"), GOOD(80L, \"Has Good
Iterate over all the values and compare Id
for (EnumStatus enumStatus : EnumStatus.values()) { if (..) {..} }