Annotation Type MethodSignature


  • @Retention(CLASS)
    public @interface MethodSignature
    Annotation used to define method signatures, consisting of the method name, and it parameter types
    • Field Summary

      Fields 
      Modifier and Type Fields Description
      static String name
      The name of the method.
      static String paramTypes
      the parameter types of the method.
    • Required Element Summary

      Required Elements 
      Modifier and Type Required Element Description
      String name  
    • Optional Element Summary

      Optional Elements 
      Modifier and Type Optional Element Description
      Class[] paramTypes  
    • Field Detail

      • name

        static final String name
        The name of the method. This can be a regular expression
      • paramTypes

        static final String paramTypes
        the parameter types of the method. Use any as a wildcard for a specific parameter
      • paramTypes

        Class[] paramTypes
        Default:
        {java.lang.NullPointerException.class}