toml
Module Contents
alltypes
Module Contents
class Toml
interface TomlArray
open class TomlInvalidTypeException : RuntimeException
open class TomlLexer : Lexer
class TomlParseError : RuntimeException
interface TomlParseResult : TomlTable
open class TomlParser : Parser
open class TomlParserBaseListener : TomlParserListener
open class TomlParserBaseVisitor<T : Any> : AbstractParseTreeVisitor<T>, TomlParserVisitor<T>
interface TomlParserListener : ParseTreeListener
interface TomlParserVisitor<T : Any> : ParseTreeVisitor<T>
class TomlPosition
interface TomlTable
Module Contents
open fun contains(dottedKey: String): Boolean
open fun contains(path: MutableList<String>): Boolean
open fun dottedKeySet(): MutableSet<String>
open fun dottedKeySet(includeTables: Boolean): MutableSet<String>
@Nullable open fun get(dottedKey: String): Any?
@Nullable abstract fun get(path: MutableList<String>): Any?
@Nullable open fun getArray(dottedKey: String): TomlArray?
@Nullable open fun getArray(path: MutableList<String>): TomlArray?
open fun getArrayOrEmpty(dottedKey: String): TomlArray
open fun getArrayOrEmpty(path: MutableList<String>): TomlArray
@Nullable open fun getBoolean(dottedKey: String): Boolean?
@Nullable open fun getBoolean(path: MutableList<String>): Boolean?
open fun getBoolean(dottedKey: String, defaultValue: BooleanSupplier): Boolean
open fun getBoolean(path: MutableList<String>, defaultValue: BooleanSupplier): Boolean
@Nullable open fun getDouble(dottedKey: String): Double?
@Nullable open fun getDouble(path: MutableList<String>): Double?
open fun getDouble(dottedKey: String, defaultValue: DoubleSupplier): Double
open fun getDouble(path: MutableList<String>, defaultValue: DoubleSupplier): Double
@Nullable open fun getLocalDate(dottedKey: String): LocalDate?
@Nullable open fun getLocalDate(path: MutableList<String>): LocalDate?
open fun getLocalDate(dottedKey: String, defaultValue: Supplier<LocalDate>): LocalDate
open fun getLocalDate(path: MutableList<String>, defaultValue: Supplier<LocalDate>): LocalDate
@Nullable open fun getLocalDateTime(dottedKey: String): LocalDateTime?
@Nullable open fun getLocalDateTime(path: MutableList<String>): LocalDateTime?
open fun getLocalDateTime(dottedKey: String, defaultValue: Supplier<LocalDateTime>): LocalDateTime
open fun getLocalDateTime(path: MutableList<String>, defaultValue: Supplier<LocalDateTime>): LocalDateTime
@Nullable open fun getLocalTime(dottedKey: String): LocalTime?
@Nullable open fun getLocalTime(path: MutableList<String>): LocalTime?
open fun getLocalTime(dottedKey: String, defaultValue: Supplier<LocalTime>): LocalTime
open fun getLocalTime(path: MutableList<String>, defaultValue: Supplier<LocalTime>): LocalTime
@Nullable open fun getLong(dottedKey: String): Long?
@Nullable open fun getLong(path: MutableList<String>): Long?
open fun getLong(dottedKey: String, defaultValue: LongSupplier): Long
open fun getLong(path: MutableList<String>, defaultValue: LongSupplier): Long
@Nullable open fun getOffsetDateTime(dottedKey: String): OffsetDateTime?
@Nullable open fun getOffsetDateTime(path: MutableList<String>): OffsetDateTime?
open fun getOffsetDateTime(dottedKey: String, defaultValue: Supplier<OffsetDateTime>): OffsetDateTime
open fun getOffsetDateTime(path: MutableList<String>, defaultValue: Supplier<OffsetDateTime>): OffsetDateTime
@Nullable open fun getString(dottedKey: String): String?
@Nullable open fun getString(path: MutableList<String>): String?
open fun getString(dottedKey: String, defaultValue: Supplier<String>): String
open fun getString(path: MutableList<String>, defaultValue: Supplier<String>): String
@Nullable open fun getTable(dottedKey: String): TomlTable?
@Nullable open fun getTable(path: MutableList<String>): TomlTable?
open fun getTableOrEmpty(dottedKey: String): TomlTable
open fun getTableOrEmpty(path: MutableList<String>): TomlTable
@Nullable open fun inputPositionOf(dottedKey: String): TomlPosition?
@Nullable abstract fun inputPositionOf(path: MutableList<String>): TomlPosition?
open fun isArray(dottedKey: String): Boolean
open fun isArray(path: MutableList<String>): Boolean
open fun isBoolean(dottedKey: String): Boolean
open fun isBoolean(path: MutableList<String>): Boolean
open fun isDouble(dottedKey: String): Boolean
open fun isDouble(path: MutableList<String>): Boolean
abstract fun isEmpty(): Boolean
open fun isLocalDate(dottedKey: String): Boolean
open fun isLocalDate(path: MutableList<String>): Boolean
open fun isLocalDateTime(dottedKey: String): Boolean
open fun isLocalDateTime(path: MutableList<String>): Boolean
open fun isLocalTime(dottedKey: String): Boolean
open fun isLocalTime(path: MutableList<String>): Boolean
open fun isLong(dottedKey: String): Boolean
open fun isLong(path: MutableList<String>): Boolean
open fun isOffsetDateTime(dottedKey: String): Boolean
open fun isOffsetDateTime(path: MutableList<String>): Boolean
open fun isString(dottedKey: String): Boolean
open fun isString(path: MutableList<String>): Boolean
open fun isTable(dottedKey: String): Boolean
open fun isTable(path: MutableList<String>): Boolean
open fun keyPathSet(): MutableSet<MutableList<String>>
abstract fun keyPathSet(includeTables: Boolean): MutableSet<MutableList<String>>
abstract fun keySet(): MutableSet<String>
abstract fun size(): Int
open fun toJson(): String
open fun toJson(appendable: Appendable): Unit
abstract fun toMap(): MutableMap<String, Any>
class TomlVersion
package org.apache.tuweni.toml
Module Contents
class Toml
interface TomlArray
open class TomlInvalidTypeException : RuntimeException
class TomlParseError : RuntimeException
interface TomlParseResult : TomlTable
class TomlPosition
interface TomlTable
Module Contents
open fun contains(dottedKey: String): Boolean
open fun contains(path: MutableList<String>): Boolean
open fun dottedKeySet(): MutableSet<String>
open fun dottedKeySet(includeTables: Boolean): MutableSet<String>
@Nullable open fun get(dottedKey: String): Any?
@Nullable abstract fun get(path: MutableList<String>): Any?
@Nullable open fun getArray(dottedKey: String): TomlArray?
@Nullable open fun getArray(path: MutableList<String>): TomlArray?
open fun getArrayOrEmpty(dottedKey: String): TomlArray
open fun getArrayOrEmpty(path: MutableList<String>): TomlArray
@Nullable open fun getBoolean(dottedKey: String): Boolean?
@Nullable open fun getBoolean(path: MutableList<String>): Boolean?
open fun getBoolean(dottedKey: String, defaultValue: BooleanSupplier): Boolean
open fun getBoolean(path: MutableList<String>, defaultValue: BooleanSupplier): Boolean
@Nullable open fun getDouble(dottedKey: String): Double?
@Nullable open fun getDouble(path: MutableList<String>): Double?
open fun getDouble(dottedKey: String, defaultValue: DoubleSupplier): Double
open fun getDouble(path: MutableList<String>, defaultValue: DoubleSupplier): Double
@Nullable open fun getLocalDate(dottedKey: String): LocalDate?
@Nullable open fun getLocalDate(path: MutableList<String>): LocalDate?
open fun getLocalDate(dottedKey: String, defaultValue: Supplier<LocalDate>): LocalDate
open fun getLocalDate(path: MutableList<String>, defaultValue: Supplier<LocalDate>): LocalDate
@Nullable open fun getLocalDateTime(dottedKey: String): LocalDateTime?
@Nullable open fun getLocalDateTime(path: MutableList<String>): LocalDateTime?
open fun getLocalDateTime(dottedKey: String, defaultValue: Supplier<LocalDateTime>): LocalDateTime
open fun getLocalDateTime(path: MutableList<String>, defaultValue: Supplier<LocalDateTime>): LocalDateTime
@Nullable open fun getLocalTime(dottedKey: String): LocalTime?
@Nullable open fun getLocalTime(path: MutableList<String>): LocalTime?
open fun getLocalTime(dottedKey: String, defaultValue: Supplier<LocalTime>): LocalTime
open fun getLocalTime(path: MutableList<String>, defaultValue: Supplier<LocalTime>): LocalTime
@Nullable open fun getLong(dottedKey: String): Long?
@Nullable open fun getLong(path: MutableList<String>): Long?
open fun getLong(dottedKey: String, defaultValue: LongSupplier): Long
open fun getLong(path: MutableList<String>, defaultValue: LongSupplier): Long
@Nullable open fun getOffsetDateTime(dottedKey: String): OffsetDateTime?
@Nullable open fun getOffsetDateTime(path: MutableList<String>): OffsetDateTime?
open fun getOffsetDateTime(dottedKey: String, defaultValue: Supplier<OffsetDateTime>): OffsetDateTime
open fun getOffsetDateTime(path: MutableList<String>, defaultValue: Supplier<OffsetDateTime>): OffsetDateTime
@Nullable open fun getString(dottedKey: String): String?
@Nullable open fun getString(path: MutableList<String>): String?
open fun getString(dottedKey: String, defaultValue: Supplier<String>): String
open fun getString(path: MutableList<String>, defaultValue: Supplier<String>): String
@Nullable open fun getTable(dottedKey: String): TomlTable?
@Nullable open fun getTable(path: MutableList<String>): TomlTable?
open fun getTableOrEmpty(dottedKey: String): TomlTable
open fun getTableOrEmpty(path: MutableList<String>): TomlTable
@Nullable open fun inputPositionOf(dottedKey: String): TomlPosition?
@Nullable abstract fun inputPositionOf(path: MutableList<String>): TomlPosition?
open fun isArray(dottedKey: String): Boolean
open fun isArray(path: MutableList<String>): Boolean
open fun isBoolean(dottedKey: String): Boolean
open fun isBoolean(path: MutableList<String>): Boolean
open fun isDouble(dottedKey: String): Boolean
open fun isDouble(path: MutableList<String>): Boolean
abstract fun isEmpty(): Boolean
open fun isLocalDate(dottedKey: String): Boolean
open fun isLocalDate(path: MutableList<String>): Boolean
open fun isLocalDateTime(dottedKey: String): Boolean
open fun isLocalDateTime(path: MutableList<String>): Boolean
open fun isLocalTime(dottedKey: String): Boolean
open fun isLocalTime(path: MutableList<String>): Boolean
open fun isLong(dottedKey: String): Boolean
open fun isLong(path: MutableList<String>): Boolean
open fun isOffsetDateTime(dottedKey: String): Boolean
open fun isOffsetDateTime(path: MutableList<String>): Boolean
open fun isString(dottedKey: String): Boolean
open fun isString(path: MutableList<String>): Boolean
open fun isTable(dottedKey: String): Boolean
open fun isTable(path: MutableList<String>): Boolean
open fun keyPathSet(): MutableSet<MutableList<String>>
abstract fun keyPathSet(includeTables: Boolean): MutableSet<MutableList<String>>
abstract fun keySet(): MutableSet<String>
abstract fun size(): Int
open fun toJson(): String
open fun toJson(appendable: Appendable): Unit
abstract fun toMap(): MutableMap<String, Any>
class TomlVersion
package org.apache.tuweni.toml.internal