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 Details

    • contentLength

      OptionalLong contentLength()
      Return the length of the body in bytes, as specified by the Content-Length header.
    • contentType

      Optional<MediaType> contentType()
      Return the media type of the body, as specified by the Content-Type header.
    • header

      List<String> header(String headerName)
      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 an HttpHeaders instance.