test2

<pre>/**
 * Appends the string representation of each of {@code parts}, using the previously configured
 * separator between each, to {@code appendable}.
 */
public <A extends Appendable> A appendTo(A appendable, Iterable<?> parts) throws IOException {
  return appendTo(appendable, parts.iterator());
}</pre>

 

<pre><filter>
    <filter-name>instrumentedFilter</filter-name>
    <filter-class>com.codahale.metrics.servlet.InstrumentedFilter</filter-class>
</filter>
<filter-mapping>
    <filter-name>instrumentedFilter</filter-name>
    <url-pattern>/*</url-pattern>
</filter-mapping></pre>
test2