Package io.netty.handler.codec.http
Interface CombinedHttpHeaders.CombinedHttpHeadersImpl.CsvValueEscaper<T>
- Type Parameters:
T
- The type that a concrete implementation handles
- Enclosing class:
CombinedHttpHeaders.CombinedHttpHeadersImpl
private static interface CombinedHttpHeaders.CombinedHttpHeadersImpl.CsvValueEscaper<T>
Escapes comma separated values (CSV).
-
Method Summary
Modifier and TypeMethodDescriptionescape
(CharSequence name, T value) Appends the value to the specifiedStringBuilder
, escaping if necessary.
-
Method Details
-
escape
Appends the value to the specifiedStringBuilder
, escaping if necessary.- Parameters:
name
- the name of the header for the value being escapedvalue
- the value to be appended, escaped if necessary
-