Enum Class EnableLoadTimeWeaving.AspectJWeaving

java.lang.Object
java.lang.Enum<EnableLoadTimeWeaving.AspectJWeaving>
cn.taketoday.context.annotation.EnableLoadTimeWeaving.AspectJWeaving
所有已实现的接口:
Serializable, Comparable<EnableLoadTimeWeaving.AspectJWeaving>, Constable
封闭类:
EnableLoadTimeWeaving

public static enum EnableLoadTimeWeaving.AspectJWeaving extends Enum<EnableLoadTimeWeaving.AspectJWeaving>
AspectJ weaving enablement options.
  • 枚举常量详细资料

    • ENABLED

      public static final EnableLoadTimeWeaving.AspectJWeaving ENABLED
      Switches on Framework-based AspectJ load-time weaving.
    • DISABLED

      public static final EnableLoadTimeWeaving.AspectJWeaving DISABLED
      Switches off Framework-based AspectJ load-time weaving (even if a "META-INF/aop.xml" resource is present on the classpath).
    • AUTODETECT

      public static final EnableLoadTimeWeaving.AspectJWeaving AUTODETECT
      Switches on AspectJ load-time weaving if a "META-INF/aop.xml" resource is present in the classpath. If there is no such resource, then AspectJ load-time weaving will be switched off.
  • 方法详细资料

    • values

      public static EnableLoadTimeWeaving.AspectJWeaving[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      返回:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static EnableLoadTimeWeaving.AspectJWeaving valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      参数:
      name - 要返回的枚举常量的名称。
      返回:
      返回带有指定名称的枚举常量
      抛出:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - 如果参数为空值