open fun isBoolean(dottedKey: String): Boolean
(source)
Check if a value in the TOML document is a boolean.
dottedKey
- A dotted key (e.g. "server.address.port"
).
IllegalArgumentException
- If the key cannot be parsed.
Return
true
if the value can be obtained as a boolean.
open fun isBoolean(path: MutableList<String>): Boolean
(source)
Check if a value in the TOML document is a boolean.
Return
true
if the value can be obtained as a boolean.