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

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

Introduction

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

The text is from its open source code.

Constructor

QueryStringEncoder(String uri)
Creates a new encoder that encodes a URI that starts with the specified path string.

Method

voidaddParam(String name, String value)
Adds a parameter with the specified name and value to this encoder.
StringtoString()
Returns the URL-encoded URI which was created from the path string specified in the constructor and the parameters added by #addParam(String,String) method.
URItoUri()
Returns the URL-encoded URI object which was created from the path string specified in the constructor and the parameters added by #addParam(String,String) method.