Enum Class AgentBuilder.DescriptionStrategy.Default

java.lang.Object
java.lang.Enum<AgentBuilder.DescriptionStrategy.Default>
net.bytebuddy.agent.builder.AgentBuilder.DescriptionStrategy.Default
All Implemented Interfaces:
Serializable, Comparable<AgentBuilder.DescriptionStrategy.Default>, Constable, AgentBuilder.DescriptionStrategy
Enclosing interface:
AgentBuilder.DescriptionStrategy

public static enum AgentBuilder.DescriptionStrategy.Default extends Enum<AgentBuilder.DescriptionStrategy.Default> implements AgentBuilder.DescriptionStrategy
Default implementations of a AgentBuilder.DescriptionStrategy.
  • Enum Constant Details

    • HYBRID

      public static final AgentBuilder.DescriptionStrategy.Default HYBRID
      A description type strategy represents a type as a TypeDescription.ForLoadedType if a retransformation or redefinition is applied on a type. Using a loaded type typically results in better performance as no I/O is required for resolving type descriptions. However, any interaction with the type is carried out via the Java reflection API. Using the reflection API triggers eager loading of any type that is part of a method or field signature. If any of these types are missing from the class path, this eager loading will cause a NoClassDefFoundError. Some Java code declares optional dependencies to other classes which are only realized if the optional dependency is present. Such code relies on the Java reflection API not being used for types using optional dependencies.
      See Also:
    • POOL_ONLY

      public static final AgentBuilder.DescriptionStrategy.Default POOL_ONLY

      A description strategy that always describes Java types using a TypePool. This requires that any type - even if it is already loaded and a Class instance is available - is processed as a non-loaded type description. Doing so can cause overhead as processing loaded types is supported very efficiently by a JVM.

      Avoiding the usage of loaded types can improve robustness as this approach does not rely on the Java reflection API which triggers eager validation of this loaded type which can fail an application if optional types are used by any types field or method signatures. Also, it is possible to guarantee debugging meta data to be available also for retransformed or redefined types if a AgentBuilder.TypeStrategy specifies the extraction of such meta data.

    • POOL_FIRST

      public static final AgentBuilder.DescriptionStrategy.Default POOL_FIRST

      A description strategy that always describes Java types using a TypePool unless a type cannot be resolved by a pool and a loaded Class instance is available. Doing so can cause overhead as processing loaded types is supported very efficiently by a JVM.

      Avoiding the usage of loaded types can improve robustness as this approach does not rely on the Java reflection API which triggers eager validation of this loaded type which can fail an application if optional types are used by any types field or method signatures. Also, it is possible to guarantee debugging meta data to be available also for retransformed or redefined types if a AgentBuilder.TypeStrategy specifies the extraction of such meta data.

  • Field Details

    • loadedFirst

      private final boolean loadedFirst
      Indicates if loaded type information is preferred over using a type pool for describing a type.
  • Constructor Details

    • Default

      private Default(boolean loadedFirst)
      Indicates if loaded type information is preferred over using a type pool for describing a type.
      Parameters:
      loadedFirst - true if loaded type information is preferred over using a type pool for describing a type.
  • Method Details

    • values

      public static AgentBuilder.DescriptionStrategy.Default[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static AgentBuilder.DescriptionStrategy.Default 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.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • withSuperTypeLoading

      public AgentBuilder.DescriptionStrategy withSuperTypeLoading()
      Creates a description strategy that uses this strategy but loads any super type. If a super type is not yet loaded, this causes this super type to never be instrumented. Therefore, this option should only be used if all instrumented types are guaranteed to be top-level types.
      Returns:
      This description strategy where all super types are loaded during the instrumentation.
      See Also:
    • isLoadedFirst

      public boolean isLoadedFirst()
      Indicates if this description strategy makes use of loaded type information and yields a different type description if no loaded type is available.
      Specified by:
      isLoadedFirst in interface AgentBuilder.DescriptionStrategy
      Returns:
      true if this description strategy prefers loaded type information when describing a type and only uses a type pool if loaded type information is not available.
    • withSuperTypeLoading

      public AgentBuilder.DescriptionStrategy withSuperTypeLoading(ExecutorService executorService)
      Creates a description strategy that uses this strategy but loads any super type asynchronously. Super types are loaded via another thread supplied by the executor service to enforce the instrumentation of any such super type. It is recommended to allow the executor service to create new threads without bound as class loading blocks any thread until all super types were instrumented.
      Parameters:
      executorService - The executor service to use.
      Returns:
      This description strategy where all super types are loaded asynchronously during the instrumentation.
      See Also: