open fun contains(dottedKey: String!): Boolean
(source)
Check if a key was set in the TOML document.
dottedKey
- String!: A dotted key (e.g. "server.port"
).
IllegalArgumentException
- If the key cannot be parsed.
Return
Boolean: true
if the key was set in the TOML document.
open fun contains(path: MutableList<String!>!): Boolean
(source)
Check if a key was set in the TOML document.
path
- MutableList<String!>!: The key path.
Return
Boolean: true
if the key was set in the TOML document.