vertx / io.vertx.rxjava.ext.web.api / RequestParameters

RequestParameters

open class RequestParameters

Container for request parameters NOTE: This class has been automatically generated from the io.vertx.ext.web.api.RequestParameters non RX-ified interface using Vert.x codegen.

Constructors

<init>

RequestParameters(delegate: RequestParameters)

Properties

__TYPE_ARG

static val __TYPE_ARG: TypeArg<RequestParameters>

Functions

body

open fun body(): RequestParameter

Return request body

cookieParameter

open fun cookieParameter(name: String): RequestParameter

Get cookie parameter by name

cookieParametersNames

open fun cookieParametersNames(): MutableList<String>

Get list of all parameter names inside cookie

equals

open fun equals(other: Any?): Boolean

formParameter

open fun formParameter(name: String): RequestParameter

Get form parameter by name

formParametersNames

open fun formParametersNames(): MutableList<String>

Get list of all parameter names inside body form

getDelegate

open fun getDelegate(): RequestParameters

hashCode

open fun hashCode(): Int

headerParameter

open fun headerParameter(name: String): RequestParameter

Get header parameter by name

headerParametersNames

open fun headerParametersNames(): MutableList<String>

Get list of all parameter names inside header

newInstance

open static fun newInstance(arg: RequestParameters): RequestParameters

pathParameter

open fun pathParameter(name: String): RequestParameter

Get path parameter by name

pathParametersNames

open fun pathParametersNames(): MutableList<String>

Get list of all parameter names inside path

queryParameter

open fun queryParameter(name: String): RequestParameter

Get query parameter by name

queryParametersNames

open fun queryParametersNames(): MutableList<String>

Get list of all parameter names inside query

toString

open fun toString(): String