Class RequestParameter
- java.lang.Object
- 
- io.vertx.reactivex.ext.web.validation.RequestParameter
 
- 
- 
Field SummaryFields Modifier and Type Field Description static io.vertx.lang.rx.TypeArg<RequestParameter>__TYPE_ARG
 - 
Constructor SummaryConstructors Constructor Description RequestParameter(RequestParameter delegate)RequestParameter(Object delegate)
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static RequestParametercreate(Object value)booleanequals(Object o)Objectget()BooleangetBoolean()BuffergetBuffer()RequestParametergetDelegate()DoublegetDouble()FloatgetFloat()IntegergetInteger()JsonArraygetJsonArray()JsonObjectgetJsonObject()Returns null if value is not a , otherwise it returns valueLonggetLong()StringgetString()inthashCode()booleanisBoolean()booleanisBuffer()booleanisEmpty()booleanisJsonArray()booleanisJsonObject()booleanisNull()booleanisNumber()booleanisString()static RequestParameternewInstance(RequestParameter arg)StringtoString()
 
- 
- 
- 
Field Detail- 
__TYPE_ARGpublic static final io.vertx.lang.rx.TypeArg<RequestParameter> __TYPE_ARG 
 
- 
 - 
Constructor Detail- 
RequestParameterpublic RequestParameter(RequestParameter delegate) 
 - 
RequestParameterpublic RequestParameter(Object delegate) 
 
- 
 - 
Method Detail- 
getDelegatepublic RequestParameter getDelegate() - Specified by:
- getDelegatein interface- io.vertx.lang.rx.RxDelegate
 
 - 
getStringpublic String getString() - Returns:
- null if value is not a String, otherwise it returns value
 
 - 
isStringpublic boolean isString() - Returns:
- true if value of this instance is a Stringinstance
 
 - 
getIntegerpublic Integer getInteger() 
 - 
getLongpublic Long getLong() 
 - 
getFloatpublic Float getFloat() 
 - 
getDoublepublic Double getDouble() 
 - 
isNumberpublic boolean isNumber() - Returns:
- true if value of this instance is a Numberinstance
 
 - 
getBooleanpublic Boolean getBoolean() - Returns:
- null if value is not a Boolean, otherwise it returns value
 
 - 
isBooleanpublic boolean isBoolean() - Returns:
- true if value of this instance is a Booleaninstance
 
 - 
getJsonObjectpublic JsonObject getJsonObject() Returns null if value is not a , otherwise it returns value- Returns:
 
 - 
isJsonObjectpublic boolean isJsonObject() - Returns:
- true if value of this instance is a instance
 
 - 
getJsonArraypublic JsonArray getJsonArray() - Returns:
- null if value is not a , otherwise it returns value
 
 - 
isJsonArraypublic boolean isJsonArray() - Returns:
- true if value of this instance is a instance
 
 - 
getBufferpublic Buffer getBuffer() - Returns:
- null if value is not a , otherwise it returns value
 
 - 
isBufferpublic boolean isBuffer() - Returns:
- true if value of this instance is a instance
 
 - 
isNullpublic boolean isNull() - Returns:
- true if value is null
 
 - 
isEmptypublic boolean isEmpty() - Returns:
- True if it's an empty string, an empty json object/array, an empty buffer or it's null
 
 - 
getpublic Object get() - Returns:
- the internal value. The internal value is always a valid Vert.x JSON type
 
 - 
createpublic static RequestParameter create(Object value) 
 - 
newInstancepublic static RequestParameter newInstance(RequestParameter arg) 
 
- 
 
-