Class ParsedHeaderValues

  • All Implemented Interfaces:
    io.vertx.lang.rx.RxDelegate

    public class ParsedHeaderValues
    extends Object
    implements io.vertx.lang.rx.RxDelegate
    A container with the request's headers that are meaningful enough to be parsed Contains:
    • Accept -> MIME header, parameters and sortable
    • Accept-Charset -> Parameters and sortable
    • Accept-Encoding -> Parameters and sortable
    • Accept-Language -> Parameters and sortable
    • Content-Type -> MIME header and parameters

    NOTE: This class has been automatically generated from the original non RX-ified interface using Vert.x codegen.

    • Field Detail

    • Constructor Detail

      • ParsedHeaderValues

        public ParsedHeaderValues​(Object delegate)
    • Method Detail

      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Object
      • getDelegate

        public ParsedHeaderValues getDelegate()
        Specified by:
        getDelegate in interface io.vertx.lang.rx.RxDelegate
      • accept

        public List<MIMEHeader> accept()
        Returns:
        List of MIME values in the Accept header
      • acceptCharset

        public List<ParsedHeaderValue> acceptCharset()
        Returns:
        List of charset values in the Accept-Charset header
      • acceptEncoding

        public List<ParsedHeaderValue> acceptEncoding()
        Returns:
        List of encofing values in the Accept-Encoding header
      • acceptLanguage

        public List<LanguageHeader> acceptLanguage()
        Returns:
        List of languages in the Accept-Language header
      • contentType

        public MIMEHeader contentType()
        Returns:
        MIME value in the Content-Type header