/**
  * Parse the supplied value and create an instance of <code>T</code>.
  *
  * @param value the string value
  * @return the newly created instance of <code>T</code>
  * @throws IllegalArgumentException if the supplied string cannot be parsed
  * @see javax.ws.rs.ext.RuntimeDelegate.HeaderDelegate#fromString(java.lang.String)
  */
 public Cookie fromString(String string) throws IllegalArgumentException {
   return Converter.toJaxRsCookie(CookieReader.read(string));
 }