Class KotlinReflectionUtils


  • @API(status=INTERNAL,
         since="1.13.3")
    public class KotlinReflectionUtils
    extends java.lang.Object
    Internal Kotlin-specific reflection utilities
    Since:
    1.13.3
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static boolean isKotlinInterfaceDefaultImplsClass​(java.lang.Class<?> clazz)
      Determines whether the supplied class is a DefaultImpls class generated by the Kotlin compiler.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • KotlinReflectionUtils

        public KotlinReflectionUtils()
    • Method Detail

      • isKotlinInterfaceDefaultImplsClass

        public static boolean isKotlinInterfaceDefaultImplsClass​(java.lang.Class<?> clazz)
        Determines whether the supplied class is a DefaultImpls class generated by the Kotlin compiler.

        See Kotlin documentation for details.