| Modifier and Type | Field and Description |
|---|---|
static io.vertx.lang.rx.TypeArg<RequestParameter> |
__TYPE_ARG |
| Constructor and Description |
|---|
RequestParameter(Object delegate) |
RequestParameter(RequestParameter delegate) |
| Modifier and Type | Method and Description |
|---|---|
static RequestParameter |
create(Object value) |
boolean |
equals(Object o) |
Boolean |
getBoolean()
Returns null if value is not a
Boolean, otherwise it returns value |
RequestParameter |
getDelegate() |
Double |
getDouble()
|
Float |
getFloat()
|
Integer |
getInteger()
|
JsonArray |
getJsonArray()
Returns null if value is not a , otherwise it returns value
|
JsonObject |
getJsonObject()
Returns null if value is not a , otherwise it returns value
|
Long |
getLong()
|
String |
getString()
Returns null if value is not a
String, otherwise it returns value |
int |
hashCode() |
boolean |
isBoolean()
Returns true if value of this instance is a
Boolean instance |
boolean |
isEmpty()
A parameter is empty if it's an empty string, an empty json object/array or if it's null
|
boolean |
isJsonArray()
Returns true if value of this instance is a instance
|
boolean |
isJsonObject()
Returns true if value of this instance is a instance
|
boolean |
isNull()
Returns true if value is null
|
boolean |
isNumber()
Returns true if value of this instance is a
Number instance |
boolean |
isString()
Returns true if value of this instance is a
String instance |
RequestParameter |
merge(RequestParameter otherParameter)
Merge this request parameter with another one.
|
static RequestParameter |
newInstance(RequestParameter arg) |
Object |
toJson()
Converts deeply this instance into a Json representation
|
String |
toString() |
public static final io.vertx.lang.rx.TypeArg<RequestParameter> __TYPE_ARG
public RequestParameter(RequestParameter delegate)
public RequestParameter(Object delegate)
public RequestParameter getDelegate()
public String getString()
String, otherwise it returns valuepublic boolean isString()
String instancepublic Integer getInteger()
public Long getLong()
public Float getFloat()
public Double getDouble()
public boolean isNumber()
Number instancepublic Boolean getBoolean()
Boolean, otherwise it returns valuepublic boolean isBoolean()
Boolean instancepublic JsonObject getJsonObject()
public boolean isJsonObject()
public JsonArray getJsonArray()
public boolean isJsonArray()
public boolean isNull()
public boolean isEmpty()
public Object toJson()
public RequestParameter merge(RequestParameter otherParameter)
otherParameter - public static RequestParameter create(Object value)
public static RequestParameter newInstance(RequestParameter arg)
Copyright © 2020 Eclipse. All rights reserved.