enum State{ LOGIN(0), CHAT(1), LOGOUT(2); private int value; State(int i){ value = i; } public int getValue(){ return value; } }
로그인 유지