final Object state = ENUM_MAP.get(value) ;
if (state == null)
{
final String pattern = WSCLogger.log_mesg.getString("com.arjuna.webservices.SoapFaultType_1") ;
final String message = MessageFormat.format(pattern, new Object[] {value}) ;
throw new InvalidEnumerationException(message) ;
}
return (SoapFaultType)state ;
}