get

operator fun get(key: BooleanStaticConfigurationKey): Boolean?

Returns the static Boolean configuration value identified by key, if configured. Returns null if the configuration value is not configured.


operator fun get(key: IntStaticConfigurationKey): Int?

Returns the static Int configuration value identified by key, if configured. Returns null if the configuration value is not configured.


operator fun get(key: FloatStaticConfigurationKey): Float?

Returns the static Float configuration value identified by key, if configured. Returns null if the configuration value is not configured.


operator fun get(key: LongStaticConfigurationKey): Long?

Returns the static Long configuration value identified by key, if configured. Returns null if the configuration value is not configured.


operator fun get(key: DoubleStaticConfigurationKey): Double?

Returns the static Double configuration value identified by key, if configured. Returns null if the configuration value is not configured.


operator fun get(key: StringStaticConfigurationKey): String?

Returns the static String configuration value identified by key, if configured. Returns null if the configuration value is not configured.


operator fun get(key: OptBooleanStaticConfigurationKey): Boolean?

Returns the static Boolean? configuration value identified by key, if configured. Returns null if the configuration value is not configured.


operator fun get(key: OptIntStaticConfigurationKey): Int?

Returns the static Int? configuration value identified by key, if configured. Returns null if the configuration value is not configured.


operator fun get(key: OptFloatStaticConfigurationKey): Float?

Returns the static Float? configuration value identified by key, if configured. Returns null if the configuration value is not configured.


operator fun get(key: OptLongStaticConfigurationKey): Long?

Returns the static Long? configuration value identified by key, if configured. Returns null if the configuration value is not configured.


operator fun get(key: OptDoubleStaticConfigurationKey): Double?

Returns the static Double? configuration value identified by key, if configured. Returns null if the configuration value is not configured.


operator fun get(key: OptStringStaticConfigurationKey): String?

Returns the static String? configuration value identified by key, if configured. Returns null if the configuration value is not configured.