Interface MethodMetadata

    • Method Detail

      • getReturnTypeName

        String getReturnTypeName()
        Return the fully-qualified name of this method's declared return type.
        Since:
        4.2
      • isAbstract

        boolean isAbstract()
        Return whether the underlying method is effectively abstract: i.e. marked as abstract on a class or declared as a regular, non-default method in an interface.
        Since:
        4.2
      • isStatic

        boolean isStatic()
        Return whether the underlying method is declared as 'static'.
      • isFinal

        boolean isFinal()
        Return whether the underlying method is marked as 'final'.
      • isOverridable

        boolean isOverridable()
        Return whether the underlying method is overridable, i.e. not marked as static, final or private.