- ByteBuddyAgent - Class in net.bytebuddy.agent
-
The Byte Buddy agent provides a JVM
Instrumentation
in order to allow Byte Buddy the
redefinition of already loaded classes.
- ByteBuddyAgent.AgentProvider - Interface in net.bytebuddy.agent
-
An agent provider is responsible for handling and providing the jar file of an agent that is being attached.
- ByteBuddyAgent.AgentProvider.ForByteBuddyAgent - Enum in net.bytebuddy.agent
-
An agent provider for a temporary Byte Buddy agent.
- ByteBuddyAgent.AgentProvider.ForExistingAgent - Class in net.bytebuddy.agent
-
An agent provider that supplies an existing agent that is not deleted after attachment.
- ByteBuddyAgent.AttachmentProvider - Interface in net.bytebuddy.agent
-
An attachment provider is responsible for making the Java attachment API available.
- ByteBuddyAgent.AttachmentProvider.Accessor - Interface in net.bytebuddy.agent
-
An accessor for a JVM's attachment API.
- ByteBuddyAgent.AttachmentProvider.Accessor.Simple - Class in net.bytebuddy.agent
-
A simple implementation of an accessible accessor.
- ByteBuddyAgent.AttachmentProvider.Accessor.Unavailable - Enum in net.bytebuddy.agent
-
A canonical implementation of an unavailable accessor.
- ByteBuddyAgent.AttachmentProvider.Compound - Class in net.bytebuddy.agent
-
A compound attachment provider that attempts the attachment by delegation to other providers.
- ByteBuddyAgent.AttachmentProvider.ForJ9Vm - Enum in net.bytebuddy.agent
-
An attachment provider that locates the attach API directly from the system class loader expecting
an IBM J9 VM.
- ByteBuddyAgent.AttachmentProvider.ForJigsawVm - Enum in net.bytebuddy.agent
-
An attachment provider that locates the attach API directly from the system class loader.
- ByteBuddyAgent.AttachmentProvider.ForToolsJarVm - Enum in net.bytebuddy.agent
-
An attachment provider that is dependant on the existence of a tools.jar file on the local
file system.
- ByteBuddyAgent.ProcessProvider - Interface in net.bytebuddy.agent
-
A process provider is responsible for providing the process id of the current VM.
- ByteBuddyAgent.ProcessProvider.ForCurrentVm - Enum in net.bytebuddy.agent
-
Supplies the current VM's process id.
- ByteBuddyAgent.ProcessProvider.ForCurrentVm.ForJava9CapableVm - Class in net.bytebuddy.agent
-
A process provider for a Java 9 capable VM with access to the introduced process API.
- ByteBuddyAgent.ProcessProvider.ForCurrentVm.ForLegacyVm - Enum in net.bytebuddy.agent
-
A process provider for a legacy VM that reads the process id from its JMX properties.
- valueOf(String) - Static method in enum net.bytebuddy.agent.ByteBuddyAgent.AgentProvider.ForByteBuddyAgent
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum net.bytebuddy.agent.ByteBuddyAgent.AttachmentProvider.Accessor.Unavailable
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum net.bytebuddy.agent.ByteBuddyAgent.AttachmentProvider.ForJ9Vm
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum net.bytebuddy.agent.ByteBuddyAgent.AttachmentProvider.ForJigsawVm
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum net.bytebuddy.agent.ByteBuddyAgent.AttachmentProvider.ForToolsJarVm
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum net.bytebuddy.agent.ByteBuddyAgent.ProcessProvider.ForCurrentVm.ForLegacyVm
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum net.bytebuddy.agent.ByteBuddyAgent.ProcessProvider.ForCurrentVm
-
Returns the enum constant of this type with the specified name.
- values() - Static method in enum net.bytebuddy.agent.ByteBuddyAgent.AgentProvider.ForByteBuddyAgent
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum net.bytebuddy.agent.ByteBuddyAgent.AttachmentProvider.Accessor.Unavailable
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum net.bytebuddy.agent.ByteBuddyAgent.AttachmentProvider.ForJ9Vm
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum net.bytebuddy.agent.ByteBuddyAgent.AttachmentProvider.ForJigsawVm
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum net.bytebuddy.agent.ByteBuddyAgent.AttachmentProvider.ForToolsJarVm
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum net.bytebuddy.agent.ByteBuddyAgent.ProcessProvider.ForCurrentVm.ForLegacyVm
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum net.bytebuddy.agent.ByteBuddyAgent.ProcessProvider.ForCurrentVm
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- VIRTUAL_MACHINE_TYPE_NAME - Static variable in interface net.bytebuddy.agent.ByteBuddyAgent.AttachmentProvider.Accessor
-
The name of the VirtualMachine
class on any OpenJDK or Oracle JDK implementation.
- VIRTUAL_MACHINE_TYPE_NAME_J9 - Static variable in interface net.bytebuddy.agent.ByteBuddyAgent.AttachmentProvider.Accessor
-
The name of the VirtualMachine
class on IBM J9 VMs.