buremba
10/31/2018, 11:54 AMOperator<*>
. Jackson automatically parse the string into the appropriate class for that Operator so we're sure that it will work. What's the alternative approach to this use-case in Kotlin?Pavlo Liapota
10/31/2018, 3:31 PMval testImp = TestOperator() as Operator<Any?>
and it will fail in runtime if type is not correct in the same way as in Java.