Java io.netty.handler.codec.http QueryStringDecoder fields, constructors, methods, implement or subclass

Example usage for Java io.netty.handler.codec.http QueryStringDecoder fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for io.netty.handler.codec.http QueryStringDecoder.

The text is from its open source code.

Field

Stringuri
Stringpath

Constructor

QueryStringDecoder(String uri)
Creates a new decoder that decodes the specified URI.
QueryStringDecoder(URI uri)
Creates a new decoder that decodes the specified URI.
QueryStringDecoder(String uri, boolean hasPath)
Creates a new decoder that decodes the specified URI encoded in the specified charset.
QueryStringDecoder(String uri, Charset charset)
Creates a new decoder that decodes the specified URI encoded in the specified charset.
QueryStringDecoder(URI uri, Charset charset)
Creates a new decoder that decodes the specified URI encoded in the specified charset.
QueryStringDecoder(String uri, Charset charset, boolean hasPath)
Creates a new decoder that decodes the specified URI encoded in the specified charset.
QueryStringDecoder(URI uri, Charset charset, int maxParams)
Creates a new decoder that decodes the specified URI encoded in the specified charset.
QueryStringDecoder(String uri, Charset charset, boolean hasPath, int maxParams)
Creates a new decoder that decodes the specified URI encoded in the specified charset.
QueryStringDecoder(URI uri, Charset charset, int maxParams, boolean semicolonIsNormalChar)
Creates a new decoder that decodes the specified URI encoded in the specified charset.

Method

StringdecodeComponent(final String s)
Decodes a bit of a URL encoded by a browser.
StringdecodeComponent(final String s, final Charset charset)
Decodes a bit of a URL encoded by a browser.
Map>parameters()
Returns the decoded key-value parameter pairs of the URI.
StringrawPath()
Returns the raw path string of the URI.