interface TomlArray
(source)
An array of TOML values.
containsArrays |
abstract fun containsArrays(): Boolean |
containsBooleans |
abstract fun containsBooleans(): Boolean |
containsDoubles |
abstract fun containsDoubles(): Boolean |
containsLocalDates |
abstract fun containsLocalDates(): Boolean |
containsLocalDateTimes |
abstract fun containsLocalDateTimes(): Boolean |
containsLocalTimes |
abstract fun containsLocalTimes(): Boolean |
containsLongs |
abstract fun containsLongs(): Boolean |
containsOffsetDateTimes |
abstract fun containsOffsetDateTimes(): Boolean |
containsStrings |
abstract fun containsStrings(): Boolean |
containsTables |
abstract fun containsTables(): Boolean |
get |
Get a value at a specified index. abstract fun get(index: Int): Any! |
getArray |
Get an array at a specified index. open fun getArray(index: Int): TomlArray! |
getBoolean |
Get a boolean at a specified index. open fun getBoolean(index: Int): Boolean |
getDouble |
Get a double at a specified index. open fun getDouble(index: Int): Double |
getLocalDate |
Get a local date at a specified index. open fun getLocalDate(index: Int): LocalDate! |
getLocalDateTime |
Get a local date time at a specified index. open fun getLocalDateTime(index: Int): LocalDateTime! |
getLocalTime |
Get a local time at a specified index. open fun getLocalTime(index: Int): LocalTime! |
getLong |
Get a long at a specified index. open fun getLong(index: Int): Long |
getOffsetDateTime |
Get an offset date time at a specified index. open fun getOffsetDateTime(index: Int): OffsetDateTime! |
getString |
Get a string at a specified index. open fun getString(index: Int): String! |
getTable |
Get a table at a specified index. open fun getTable(index: Int): TomlTable! |
inputPositionOf |
Get the position where a value is defined in the TOML document. abstract fun inputPositionOf(index: Int): TomlPosition! |
isEmpty |
abstract fun isEmpty(): Boolean |
size |
abstract fun size(): Int |
toJson |
Return a representation of this array using JSON. open fun toJson(): String!
Append a JSON representation of this array to the appendable output. open fun toJson(appendable: Appendable!): Unit |
toList |
Get the elements of this array as a abstract fun toList(): MutableList<Any!>! |