CrashReportData

class CrashReportData

Stores a crash report data

Constructors

CrashReportData
Link copied to clipboard
fun CrashReportData()
CrashReportData
Link copied to clipboard
fun CrashReportData(json: String)

Functions

containsKey
Link copied to clipboard
fun containsKey(key: String): Boolean
fun containsKey(key: ReportField): Boolean
get
Link copied to clipboard
operator fun get(key: String): Any?
getString
Link copied to clipboard
fun getString(key: ReportField): String?
Returns the property with the specified key.
put
Link copied to clipboard
fun put(key: String, value: Boolean)
fun put(key: String, value: Double)
fun put(key: String, value: Int)
fun put(key: String, value: Long)
fun put(key: String, value: String?)
fun put(key: String, value: JSONArray?)
fun put(key: String, value: JSONObject?)
fun put(key: ReportField, value: Boolean)
fun put(key: ReportField, value: Double)
fun put(key: ReportField, value: Int)
fun put(key: ReportField, value: Long)
fun put(key: ReportField, value: String?)
fun put(key: ReportField, value: JSONArray?)
fun put(key: ReportField, value: JSONObject?)
toJSON
Link copied to clipboard
fun toJSON(): String
toMap
Link copied to clipboard
fun toMap(): Map<String, Any?>