Return the properly formatted string representation of the relay path.
StringBuffer buffer = new StringBuffer();
Enumeration hosts;
buffer.append('<");
hosts = _path.elements();
if (hosts.hasMoreElements())
{
buffer.append('@");
buffer.append((String)hosts.nextElement());
while (hosts.hasMoreElements())
{
buffer.append(",@");
buffer.append((String)hosts.nextElement());
}
buffer.append(':");
}
buffer.append(_emailAddress);
buffer.append('>");
return buffer.toString();