package chat.module.entity; public enum GroupType { Doctor, Patient, Friend; public static GroupType parse(String extra) { // TODO Auto-generated method stub return Doctor; } }