public static MessageType getMessageType(Integer value) {
   if (null == value) return null;
   for (MessageType _enum : MessageType.values()) {
     if (value.equals(_enum.getValue())) return _enum;
   }
   return null;
 }