get

inline operator fun Settings.get(key: String, defaultValue: Int): Int

Equivalent to Settings.getInt


inline operator fun Settings.get(key: String, defaultValue: Long): Long

Equivalent to Settings.getLong


inline operator fun Settings.get(key: String, defaultValue: String): String

Equivalent to Settings.getString


inline operator fun Settings.get(key: String, defaultValue: Float): Float

Equivalent to Settings.getFloat


inline operator fun Settings.get(key: String, defaultValue: Double): Double

Equivalent to Settings.getDouble


inline operator fun Settings.get(key: String, defaultValue: Boolean): Boolean

Equivalent to Settings.getBoolean


inline operator fun <T : Any> Settings.get(key: String): T?

Get the typed value stored at key if present, or return null if not. Throws IllegalArgumentException if T is not one of Int, Long, String, Float, Double, or Boolean.

Return Singleton CoreClient