Enum AgentBuilder.DescriptionStrategy.Default
- All Implemented Interfaces:
Serializable
,Comparable<AgentBuilder.DescriptionStrategy.Default>
,java.lang.constant.Constable
,AgentBuilder.DescriptionStrategy
- Enclosing interface:
AgentBuilder.DescriptionStrategy
AgentBuilder.DescriptionStrategy
.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
Nested classes/interfaces inherited from interface net.bytebuddy.agent.builder.AgentBuilder.DescriptionStrategy
AgentBuilder.DescriptionStrategy.Default, AgentBuilder.DescriptionStrategy.SuperTypeLoading
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionA description type strategy represents a type as aTypeDescription.ForLoadedType
if a retransformation or redefinition is applied on a type.A description strategy that always describes Java types using aTypePool
. -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final boolean
Indicates if loaded type information is preferred over using a type pool for describing a type. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprivate
Default
(boolean loadedFirst) Indicates if loaded type information is preferred over using a type pool for describing a type. -
Method Summary
Modifier and TypeMethodDescriptionboolean
Indicates if this description strategy makes use of loaded type information and yields a different type description if no loaded type is available.Returns the enum constant of this type with the specified name.values()
Returns an array containing the constants of this enum type, in the order they are declared.Creates a description strategy that uses this strategy but loads any super type.withSuperTypeLoading
(ExecutorService executorService) Creates a description strategy that uses this strategy but loads any super type asynchronously.Methods inherited from class java.lang.Enum
clone, compareTo, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
Methods inherited from interface net.bytebuddy.agent.builder.AgentBuilder.DescriptionStrategy
apply
-
Enum Constant Details
-
HYBRID
A description type strategy represents a type as aTypeDescription.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 aNoClassDefFoundError
. 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
A description strategy that always describes Java types using a
TypePool
. This requires that any type - even if it is already loaded and aClass
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
A description strategy that always describes Java types using a
TypePool
unless a type cannot be resolved by a pool and a loadedClass
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 loadedFirstIndicates 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
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-
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 interfaceAgentBuilder.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
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:
-