get

fun <T> get(name: String, jClass: Class<T>): T
inline fun <T> get(name: String): T

Get a named value of type T from the resolution context


fun <T> get(jClass: Class<T>): T
inline fun <T> get(): T

Get a value of type T from the resolution context.

Will not resolve a named value of type T unless a name argument is passed.