get

abstract operator fun get(key: String): JsonNode?(source)

Gets the value of the key from the config file.

Parameters

key

The key of the value.


open operator fun get(key: String, defaultValue: Any): Any(source)

Gets the value of the key from the config file.

Return

The value of the key.

Parameters

key

The key of the value.

defaultValue

The default value to return if the key does not exist.