Annotation Type Signature


  • @Documented
    @Retention(RUNTIME)
    @Target({})
    public @interface Signature
    The annotation that indicate the method signature.
    Author:
    Clinton Begin
    See Also:
    Intercepts
    • Required Element Summary

      Required Elements 
      Modifier and Type Required Element Description
      java.lang.Class<?>[] args
      Returns java types for method argument.
      java.lang.String method
      Returns the method name.
      java.lang.Class<?> type
      Returns the java type.
    • Element Detail

      • type

        java.lang.Class<?> type
        Returns the java type.
        Returns:
        the java type
      • method

        java.lang.String method
        Returns the method name.
        Returns:
        the method name
      • args

        java.lang.Class<?>[] args
        Returns java types for method argument.
        Returns:
        java types for method argument