Companion
Functions
Factory for an INOUT parameter, equivalent to Sp.InOut(type, value). Kotlin callers typically prefer the reified spInOut helper. On JVM and Android a java.lang.Class<T> overload is also available.
Class<T> overload for Java callers; equivalent to inOutParam(type.kotlin, value).
Factory for an INOUT parameter, equivalent to Sp.InOut(type, value). Kotlin callers typically prefer the reified spInOut helper. On JVM and Android a java.lang.Class<T> overload is also available.
Factory for an IN parameter, equivalent to Sp.In(value). Also the entry point for Java callers — in Kotlin this is usually unnecessary because raw values passed to procedure(...) are auto-wrapped.
Factory for an IN parameter, equivalent to Sp.In(value). Also the entry point for Java callers — in Kotlin this is usually unnecessary because raw values passed to procedure(...) are auto-wrapped.
Factory for an OUT parameter, equivalent to Sp.Out(type). Kotlin callers typically prefer the reified spOut helper. On JVM and Android a java.lang.Class<T> overload is also available.
Class<T> overload for Java callers; equivalent to outParam(type.kotlin).
Factory for an OUT parameter, equivalent to Sp.Out(type). Kotlin callers typically prefer the reified spOut helper. On JVM and Android a java.lang.Class<T> overload is also available.