toStringAddSettings

Will be called whenever toString is invoked, allowing inheritors of Config to add their settings to the output.

e.g.

protected override fun toStringAddSettings(): Set {
    return LinkedHashSet(3, 1.0f).apply {
        add(Setting(name = "setting1", value = setting1))
        add(Setting(name = "setting2", value = setting2))
    }
}

See also