@Nullable open fun getLong(dottedKey: String!): Long?
(source)
Get a long from the TOML document.
dottedKey
- String!: A dotted key (e.g. "server.address.port"
).
IllegalArgumentException
- If the key cannot be parsed.
TomlInvalidTypeException
- If the value is present but not a long, or any element of the path preceding the final key is not a table.
Return
Long?: The value, or null
if no value was set in the TOML document.
@Nullable open fun getLong(path: MutableList<String!>!): Long?
(source)
Get a long from the TOML document.
path
- MutableList<String!>!: The key path.
TomlInvalidTypeException
- If the value is present but not a long, or any element of the path preceding the final key is not a table.
Return
Long?: The value, or null
if no value was set in the TOML document.
open fun getLong(dottedKey: String!, defaultValue: LongSupplier!): Long
(source)
Get a long from the TOML document, or return a default.
dottedKey
- String!: A dotted key (e.g. "server.address.port"
).
defaultValue
- LongSupplier!: A supplier for the default value.
IllegalArgumentException
- If the key cannot be parsed.
TomlInvalidTypeException
- If the value is present but not a long, or any element of the path preceding the final key is not a table.
Return
Long: The value, or the default.
open fun getLong(path: MutableList<String!>!, defaultValue: LongSupplier!): Long
(source)
Get a long from the TOML document, or return a default.
path
- MutableList<String!>!: The key path.
defaultValue
- LongSupplier!: A supplier for the default value.
TomlInvalidTypeException
- If the value is present but not a long, or any element of the path preceding the final key is not a table.
Return
Long: The value, or the default.