public String equalsAndReplace(int i, EnumFooBarQix enumValue) { String result = ""; if (i == enumValue.getValue()) { result += enumValue.name(); } return result; }
public String divisible(int i, EnumFooBarQix enumValue) { String result = ""; if (i % enumValue.getValue() == 0) { result += enumValue.name(); } return result; }