程序包 infra.aop

类 TruePointcut

java.lang.Object
infra.aop.TruePointcut
所有已实现的接口:
Pointcut, Serializable

final class TruePointcut extends Object implements Pointcut, Serializable
Canonical Pointcut instance that always matches.
从以下版本开始:
3.0
作者:
Rod Johnson, TODAY 2021/2/1 18:24
  • 字段详细资料

    • serialVersionUID

      private static final long serialVersionUID
      另请参阅:
    • INSTANCE

      public static final TruePointcut INSTANCE
  • 构造器详细资料

    • TruePointcut

      private TruePointcut()
      Enforce Singleton pattern.
  • 方法详细资料

    • getClassFilter

      public ClassFilter getClassFilter()
      从接口复制的说明: Pointcut
      Return the ClassFilter for this pointcut.
      指定者:
      getClassFilter 在接口中 Pointcut
      返回:
      the ClassFilter (never null)
    • getMethodMatcher

      public MethodMatcher getMethodMatcher()
      从接口复制的说明: Pointcut
      Return the MethodMatcher for this pointcut.
      指定者:
      getMethodMatcher 在接口中 Pointcut
      返回:
      the MethodMatcher (never null)
    • readResolve

      private Object readResolve()
      Required to support serialization. Replaces with canonical instance on deserialization, protecting Singleton pattern. Alternative to overriding equals().
    • toString

      public String toString()
      覆盖:
      toString 在类中 Object