Interface ClientResponse.Headers
- All Known Implementing Classes:
ClientResponseWrapper.HeadersWrapper
- Enclosing interface:
- ClientResponse
public static interface ClientResponse.Headers
Represents the headers of the HTTP response.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionReturn the headers as anHttpHeaders
instance.Return the length of the body in bytes, as specified by theContent-Length
header.Return the media type of the body, as specified by theContent-Type
header.Return the header value(s), if any, for the header of the given name.
-
Method Details
-
contentLength
OptionalLong contentLength()Return the length of the body in bytes, as specified by theContent-Length
header. -
contentType
Return the media type of the body, as specified by theContent-Type
header. -
header
Return the header value(s), if any, for the header of the given name.Return an empty list if no header values are found.
- Parameters:
headerName
- the header name
-
asHttpHeaders
HttpHeaders asHttpHeaders()Return the headers as anHttpHeaders
instance.
-