Bluestep JS Documentation
    Preparing search index...

    Class HttpHeaders

    Represents a collection of HTTP headers.

    See java.net.http.HttpHeaders for full documentation

    Index

    Constructors

    Methods

    • Return an unmodifiable list of all header string values for the given header name.

      Parameters

      • name: string

      Returns string[]

    • Returns the first value of the header with the given name, if present.

      Parameters

      • name: string

      Returns Optional<string>

    • Returns the first value of the header with the given name as a number, if present.

      Parameters

      • name: string

      Returns OptionalLong

    • Returns an unmodifiable multi Map view of this HttpHeaders

      Returns { [key: string]: string[] }