tuweni / org.apache.tuweni.toml / TomlTable / getDouble

getDouble

@Nullable open fun getDouble(dottedKey: String!): Double? (source)

Get a double from the TOML document.

Parameters

dottedKey - String!: A dotted key (e.g. "server.address.port").

Exceptions

IllegalArgumentException - If the key cannot be parsed.

TomlInvalidTypeException - If the value is present but not a double, or any element of the path preceding the final key is not a table.

Return
Double?: The value, or null if no value was set in the TOML document.

@Nullable open fun getDouble(path: MutableList<String!>!): Double? (source)

Get a double from the TOML document.

Parameters

path - MutableList<String!>!: A dotted key.

Exceptions

TomlInvalidTypeException - If the value is present but not a double, or any element of the path preceding the final key is not a table.

Return
Double?: The value, or null if no value was set in the TOML document.

open fun getDouble(dottedKey: String!, defaultValue: DoubleSupplier!): Double (source)

Get a double from the TOML document, or return a default.

Parameters

dottedKey - String!: A dotted key (e.g. "server.address.port").

defaultValue - DoubleSupplier!: A supplier for the default value.

Exceptions

IllegalArgumentException - If the key cannot be parsed.

TomlInvalidTypeException - If the value is present but not a double, or any element of the path preceding the final key is not a table.

Return
Double: The value, or the default.

open fun getDouble(path: MutableList<String!>!, defaultValue: DoubleSupplier!): Double (source)

Get a double from the TOML document, or return a default.

Parameters

path - MutableList<String!>!: The key path.

defaultValue - DoubleSupplier!: A supplier for the default value.

Exceptions

TomlInvalidTypeException - If the value is present but not a double, or any element of the path preceding the final key is not a table.

Return
Double: The value, or the default.