public class App { public static void main(String[] args) throws Exception { handleEmp(); } public static void handleEmp() { Employee emp = new Employee(); emp.status = Status.ACTIVE; System.out.println(emp.status); } }