set

operator fun set(key: BooleanStaticConfigurationKey, value: Boolean?)

Sets a static Boolean configuration value identified by key to the given value. If value is null, any previously configured value is cleared.


operator fun set(key: IntStaticConfigurationKey, value: Int?)

Sets a static Int configuration value identified by key to the given value. If value is null, any previously configured value is cleared.


operator fun set(key: FloatStaticConfigurationKey, value: Float?)

Sets a static Float configuration value identified by key to the given value. If value is null, any previously configured value is cleared.


operator fun set(key: LongStaticConfigurationKey, value: Long?)

Sets a static Long configuration value identified by key to the given value. If value is null, any previously configured value is cleared.


operator fun set(key: DoubleStaticConfigurationKey, value: Double?)

Sets a static Double configuration value identified by key to the given value. If value is null, any previously configured value is cleared.


operator fun set(key: StringStaticConfigurationKey, value: String?)

Sets a static String configuration value identified by key to the given value. If value is null, any previously configured value is cleared.


operator fun set(key: OptBooleanStaticConfigurationKey, value: Boolean?)

Sets a static Boolean? configuration value identified by key to the given value. If value is null, any previously configured value is cleared.


operator fun set(key: OptIntStaticConfigurationKey, value: Int?)

Sets a static Int? configuration value identified by key to the given value. If value is null, any previously configured value is cleared.


operator fun set(key: OptFloatStaticConfigurationKey, value: Float?)

Sets a static Float? configuration value identified by key to the given value. If value is null, any previously configured value is cleared.


operator fun set(key: OptLongStaticConfigurationKey, value: Long?)

Sets a static Long? configuration value identified by key to the given value. If value is null, any previously configured value is cleared.


operator fun set(key: OptDoubleStaticConfigurationKey, value: Double?)

Sets a static Double? configuration value identified by key to the given value. If value is null, any previously configured value is cleared.


operator fun set(key: OptStringStaticConfigurationKey, value: String?)

Sets a static String? configuration value identified by key to the given value. If value is null, any previously configured value is cleared.