open class JsonEvent
A JSON event emited by the io.vertx.rxjava.core.parsetools.JsonParser. NOTE: This class has been automatically generated from the io.vertx.core.parsetools.JsonEvent non RX-ified interface using Vert.x codegen.
JsonEvent(delegate: JsonEvent) |
static val __TYPE_ARG: TypeArg<JsonEvent> |
open fun arrayValue(): JsonArray |
|
open fun binaryValue(): Buffer
Return the binary value. JSON itself has no notion of a binary, this extension complies to the RFC-7493, so this method assumes there is a String value with the key and it contains a Base64 encoded binary, which it decodes if found and returns. |
|
open fun booleanValue(): Boolean |
|
open fun doubleValue(): Double |
|
open fun equals(other: Any?): Boolean |
|
open fun fieldName(): String |
|
open fun floatValue(): Float |
|
open fun getDelegate(): JsonEvent |
|
open fun hashCode(): Int |
|
open fun integerValue(): Int |
|
open fun isArray(): Boolean |
|
open fun isBoolean(): Boolean |
|
open fun isNull(): Boolean |
|
open fun isNumber(): Boolean |
|
open fun isObject(): Boolean |
|
open fun isString(): Boolean |
|
open fun longValue(): Long |
|
open fun <T : Any> mapTo(type: Class<T>): T
Decodes and returns the current value as the specified |
|
open static fun newInstance(arg: JsonEvent): JsonEvent |
|
open fun objectValue(): JsonObject |
|
open fun stringValue(): String |
|
open fun toString(): String |
|
open fun type(): JsonEventType |
|
open fun value(): Any |