Interface InterfaceExtension.MethodSignature

Enclosing interface:
InterfaceExtension

public static interface InterfaceExtension.MethodSignature
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the fully qualified type name of the exception types.
    Returns the name of the method.
    Returns the name of the parameter
    Returns the fully qualified type name of the parameter types in order.
    Returns the fully qualified type name of the return value or 'void' for no return value.
  • Method Details

    • getName

      String getName()
      Returns the name of the method.
    • getReturnType

      String getReturnType()
      Returns the fully qualified type name of the return value or 'void' for no return value.
    • getParameterTypes

      String[] getParameterTypes()
      Returns the fully qualified type name of the parameter types in order.
    • getParameterNames

      String[] getParameterNames()
      Returns the name of the parameter
    • getExceptionTypes

      String[] getExceptionTypes()
      Returns the fully qualified type name of the exception types.