Annotation TinyTracker

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      abstract String key() track key instead of AOP auto
      abstract String ref() track ref instead of AOP auto
      abstract String mix()
      The name of this AOP object's method that will mix the `TinyTracking` after return/throw,
      its parameters is the `TinyTracking` prepended to the parameters of the AOP method.
      
      * saveOrder(long, Order) - the AOP method
      * saveOrder(TinyTracking, long, Order) - same as AOP method if mix is empty
      * saveOrderMix(TinyTracking, long, Order) - if mix is saveOrderMix
      
      abstract Array<Class<out Object>> omitClass() omit the property if it is instance of
      abstract Array<String> omitEqual() omit the property if its name equals
      abstract Array<String> omitRegex() omit the property if its name match regex
      • Methods inherited from class java.lang.annotation.Annotation

        annotationType, equals, hashCode, toString
      • Methods inherited from class java.lang.Object

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

    • Method Detail

      • key

         abstract String key()

        track key instead of AOP auto

      • ref

         abstract String ref()

        track ref instead of AOP auto

      • mix

         abstract String mix()
        The name of this AOP object's method that will mix the `TinyTracking` after return/throw,
        its parameters is the `TinyTracking` prepended to the parameters of the AOP method.
        
        * saveOrder(long, Order) - the AOP method
        * saveOrder(TinyTracking, long, Order) - same as AOP method if mix is empty
        * saveOrderMix(TinyTracking, long, Order) - if mix is saveOrderMix
        
      • omitRegex

        @Language(value = "regexp") abstract Array<String> omitRegex()

        omit the property if its name match regex