Uses of Interface
org.apache.hc.core5.http.HeaderElement
-
Packages that use HeaderElement Package Description org.apache.hc.core5.http Core HTTP transport component APIs.org.apache.hc.core5.http.message Core HTTP message components, message element parser and writer APIs and their default implementations. -
-
Uses of HeaderElement in org.apache.hc.core5.http
Methods in org.apache.hc.core5.http with parameters of type HeaderElement Modifier and Type Method Description private static ContentType
ContentType. create(HeaderElement helem, boolean strict)
-
Uses of HeaderElement in org.apache.hc.core5.http.message
Classes in org.apache.hc.core5.http.message that implement HeaderElement Modifier and Type Class Description class
BasicHeaderElement
Basic implementation ofHeaderElement
Fields in org.apache.hc.core5.http.message declared as HeaderElement Modifier and Type Field Description private static HeaderElement[]
BasicHeaderValueParser. EMPTY_HEADER_ELEMENT_ARRAY
An empty immutableHeaderElement
array.Methods in org.apache.hc.core5.http.message that return HeaderElement Modifier and Type Method Description static HeaderElement[]
MessageSupport. parse(Header header)
HeaderElement[]
BasicHeaderValueParser. parseElements(java.lang.CharSequence buffer, ParserCursor cursor)
HeaderElement[]
HeaderValueParser. parseElements(java.lang.CharSequence buffer, ParserCursor cursor)
Parses a header value into elements.(package private) HeaderElement
BasicHeaderElementIterator. parseHeaderElement(java.lang.CharSequence buf, ParserCursor cursor)
HeaderElement
BasicHeaderValueParser. parseHeaderElement(java.lang.CharSequence buffer, ParserCursor cursor)
HeaderElement
HeaderValueParser. parseHeaderElement(java.lang.CharSequence buffer, ParserCursor cursor)
Parses a single header element.Methods in org.apache.hc.core5.http.message that return types with arguments of type HeaderElement Modifier and Type Method Description static java.util.Iterator<HeaderElement>
MessageSupport. iterate(MessageHeaders headers, java.lang.String name)
Methods in org.apache.hc.core5.http.message with parameters of type HeaderElement Modifier and Type Method Description void
BasicHeaderValueFormatter. formatElements(CharArrayBuffer buffer, HeaderElement[] elems, boolean quote)
void
HeaderValueFormatter. formatElements(CharArrayBuffer buffer, HeaderElement[] elems, boolean quote)
Formats an array of header elements.void
BasicHeaderValueFormatter. formatHeaderElement(CharArrayBuffer buffer, HeaderElement elem, boolean quote)
void
HeaderValueFormatter. formatHeaderElement(CharArrayBuffer buffer, HeaderElement elem, boolean quote)
Formats one header element.
-