IPWorks IoT 2020 Kotlin Edition

Questions / Feedback?

Characters Event

Fired for plain text segments of the input stream.

Syntax

public open class DefaultJsonEventListener : JsonEventListener {
  ...
  public override fun characters(e: JsonCharactersEvent) {}
  ...
}

public class JsonCharactersEvent {
  val text: String?
}

Remarks

The Characters event provides the plain text content of the JSON document (i.e. the text inside the elements). The text is provided through the Text parameter.

The text includes white space as well as end of line characters, except for ignorable whitespace which is fired through the IgnorableWhitespace event.

Copyright (c) 2021 /n software inc. - All rights reserved.
IPWorks IoT 2020 Kotlin Edition - Version 20.0 [Build 7941]