| Package | Description | 
|---|---|
| net.bytebuddy | Byte Buddy is a library for creating Java classes at runtime of a Java program. | 
| net.bytebuddy.agent.builder | An agent builder is used to easily implement load-time class-transformations using a Java agent. | 
| net.bytebuddy.asm | The ASM package contains classes that are meant for direct interaction with the ASM API. | 
| net.bytebuddy.build | A package for types that allow for applying Byte Buddy transformation during a build process. | 
| net.bytebuddy.dynamic | This package contains classes and interfaces that are connected to writing the byte stream that represents a Java
 type that is dynamically created and for loading this type into a running JVM process. | 
| net.bytebuddy.dynamic.scaffold | This package contains helper types and implementations that are responsible for the actual writing of a byte array
 representing a Java class. | 
| net.bytebuddy.dynamic.scaffold.inline | All classes and types in this package are related to creating a  DynamicTypeby
 enhancing a given type. | 
| net.bytebuddy.implementation | The implementation package contains any logic for intercepting method calls. | 
| net.bytebuddy.implementation.auxiliary | Auxiliary types describe helper types that aid as a supplementary to a given
  InstrumentedType. | 
| net.bytebuddy.implementation.bind.annotation | This package contains annotations, types and classes that are responsible for binding a method to calling another
 method by interpreting annotations that indicate how a method should be bound to another method. | 
| net.bytebuddy.implementation.bytecode | Types and classes in this package are responsible for creating Java byte code for a given byte code target
 which is represented by a  MethodDescription. | 
| Modifier and Type | Class and Description | 
|---|---|
| protected static class  | ByteBuddy.EnumerationImplementation.InitializationAppenderA byte code appender for the type initializer of any enumeration type. | 
| protected static class  | ByteBuddy.EnumerationImplementation.ValuesMethodAppenderA byte code appender for the  valuesmethod of any enumeration type. | 
| protected static class  | ByteBuddy.RecordConstructorStrategy.AppenderA byte code appender for accessors and the record constructor. | 
| Modifier and Type | Method and Description | 
|---|---|
| ByteCodeAppender | ByteBuddy.EnumerationImplementation. appender(Implementation.Target implementationTarget)Creates a byte code appender that determines the implementation of the instrumented type's methods. | 
| ByteCodeAppender | ByteBuddy.RecordConstructorStrategy. appender(Implementation.Target implementationTarget)Creates a byte code appender that determines the implementation of the instrumented type's methods. | 
| ByteCodeAppender | ByteBuddy.RecordObjectMethod. appender(Implementation.Target implementationTarget)Creates a byte code appender that determines the implementation of the instrumented type's methods. | 
| Modifier and Type | Class and Description | 
|---|---|
| protected static class  | AgentBuilder.LambdaInstrumentationStrategy.LambdaInstanceFactory.BridgeMethodImplementation.AppenderAn appender for implementing a bridge method for a lambda expression. | 
| protected static class  | AgentBuilder.LambdaInstrumentationStrategy.LambdaInstanceFactory.ConstructorImplementation.AppenderAn appender to implement the executing transformer. | 
| protected static class  | AgentBuilder.LambdaInstrumentationStrategy.LambdaInstanceFactory.FactoryImplementation.AppenderAn appender for a lambda expression factory. | 
| protected static class  | AgentBuilder.LambdaInstrumentationStrategy.LambdaInstanceFactory.LambdaMethodImplementation.AppenderAn appender for a lambda expression's functional method. | 
| protected static class  | AgentBuilder.LambdaInstrumentationStrategy.LambdaMetafactoryFactoryA factory for rewriting the JDK's  java.lang.invoke.LambdaMetafactorymethods for use with Byte Buddy. | 
| Modifier and Type | Method and Description | 
|---|---|
| ByteCodeAppender | AgentBuilder.LambdaInstrumentationStrategy.LambdaInstanceFactory.ConstructorImplementation. appender(Implementation.Target implementationTarget)Creates a byte code appender that determines the implementation of the instrumented type's methods. | 
| ByteCodeAppender | AgentBuilder.LambdaInstrumentationStrategy.LambdaInstanceFactory.FactoryImplementation. appender(Implementation.Target implementationTarget)Creates a byte code appender that determines the implementation of the instrumented type's methods. | 
| ByteCodeAppender | AgentBuilder.LambdaInstrumentationStrategy.LambdaInstanceFactory.LambdaMethodImplementation. appender(Implementation.Target implementationTarget)Creates a byte code appender that determines the implementation of the instrumented type's methods. | 
| ByteCodeAppender | AgentBuilder.LambdaInstrumentationStrategy.LambdaInstanceFactory.SerializationImplementation. appender(Implementation.Target implementationTarget)Creates a byte code appender that determines the implementation of the instrumented type's methods. | 
| ByteCodeAppender | AgentBuilder.LambdaInstrumentationStrategy.LambdaInstanceFactory.BridgeMethodImplementation. appender(Implementation.Target implementationTarget)Creates a byte code appender that determines the implementation of the instrumented type's methods. | 
| protected static ByteCodeAppender | AgentBuilder.LambdaInstrumentationStrategy.LambdaInstanceFactory.LambdaMethodImplementation.Appender. of(MethodDescription targetMethod,
  JavaConstant.MethodType specializedLambdaMethod,
  List<FieldDescription.InDefinedShape> declaredFields,
  JavaConstant.MethodHandle.HandleType handleType,
  TypeDescription targetType)Resolves an appropriate appender for this lambda expression. | 
| Modifier and Type | Class and Description | 
|---|---|
| protected static class  | Advice.AppenderA byte code appender for implementing  Advice. | 
| protected static class  | ClassVisitorFactory.AttributeTranslatorA method to wrap an  Attribute. | 
| protected static class  | ClassVisitorFactory.ConstantArrayTranslatorA method to translate an array of constants from one namespace to another. | 
| protected static class  | ClassVisitorFactory.ConstantDynamicTranslatorA method to translate a  ConstantDynamicfrom one namespace to another. | 
| protected static class  | ClassVisitorFactory.ConstantTranslatorA method to translate a constant value from one namespace to another. | 
| protected static class  | ClassVisitorFactory.FrameTranslatorA method to translate a stack map frame array from one namespace to another. | 
| protected static class  | ClassVisitorFactory.HandleTranslatorA method to translate a  Handlefrom one namespace to another. | 
| protected static class  | ClassVisitorFactory.LabelArrayTranslatorA method to translate an array of  Labels from one namespace to another. | 
| protected static class  | ClassVisitorFactory.LabelTranslatorA method to translate a  Labelfrom one namespace to another. | 
| protected static class  | ClassVisitorFactory.NullCheckedConstructionAn appender that performs a  null-checked construction. | 
| protected static class  | ClassVisitorFactory.TypePathTranslatorA method to translate a  TypePathtype from one namespace to another. | 
| Modifier and Type | Method and Description | 
|---|---|
| ByteCodeAppender | Advice. appender(Implementation.Target implementationTarget)Creates a byte code appender that determines the implementation of the instrumented type's methods. | 
| Constructor and Description | 
|---|
| Appender(Advice advice,
        Implementation.Target implementationTarget,
        ByteCodeAppender delegate)Creates a new appender for an advice component. | 
| EmulatingMethodVisitor(MethodVisitor methodVisitor,
                      ByteCodeAppender delegate)Creates a new emulating method visitor. | 
| Modifier and Type | Class and Description | 
|---|---|
| protected static class  | AccessControllerPlugin.InitializerA byte code appender to create an initializer segment that determines if
 the  java.security.AccessControlleris available. | 
| protected static class  | AccessControllerPlugin.Initializer.WithoutPropertyAn initializer that always uses the access controller if it is available. | 
| protected static class  | AccessControllerPlugin.Initializer.WithPropertyAn initializer that uses a property to determine if the access controller should be actually used even if it is available. | 
| Modifier and Type | Class and Description | 
|---|---|
| static class  | NexusAccessor.InitializationAppenderAn initialization appender that looks up a loaded type initializer from Byte Buddy's  Nexus. | 
| Modifier and Type | Method and Description | 
|---|---|
| DynamicType.Builder<T> | DynamicType.Builder. initializer(ByteCodeAppender byteCodeAppender)
 Executes the supplied byte code appender within the beginning of the instrumented type's type initializer. | 
| DynamicType.Builder<U> | DynamicType.Builder.AbstractBase.Delegator. initializer(ByteCodeAppender byteCodeAppender)
 Executes the supplied byte code appender within the beginning of the instrumented type's type initializer. | 
| DynamicType.Builder<U> | DynamicType.Builder.AbstractBase.Adapter. initializer(ByteCodeAppender byteCodeAppender)
 Executes the supplied byte code appender within the beginning of the instrumented type's type initializer. | 
| Modifier and Type | Interface and Description | 
|---|---|
| interface  | TypeInitializerA type initializer is responsible for defining a type's static initialization block. | 
| Modifier and Type | Class and Description | 
|---|---|
| static class  | TypeInitializer.NoneCanonical implementation of a non-defined type initializer. | 
| static class  | TypeInitializer.SimpleA simple, defined type initializer that executes a given  ByteCodeAppender. | 
| static class  | TypeWriter.MethodPool.Record.ForDefinedMethod.OfVisibilityBridgeA record for a visibility bridge. | 
| Modifier and Type | Method and Description | 
|---|---|
| TypeInitializer | TypeInitializer. expandWith(ByteCodeAppender byteCodeAppender)Expands this type initializer with another byte code appender. | 
| TypeInitializer | TypeInitializer.None. expandWith(ByteCodeAppender byteCodeAppenderFactory)Expands this type initializer with another byte code appender. | 
| TypeInitializer | TypeInitializer.Simple. expandWith(ByteCodeAppender byteCodeAppender)Expands this type initializer with another byte code appender. | 
| TypeWriter.MethodPool.Record | TypeWriter.MethodPool.Record. prepend(ByteCodeAppender byteCodeAppender)Prepends the given method appender to this entry. | 
| TypeWriter.MethodPool.Record | TypeWriter.MethodPool.Record.ForNonImplementedMethod. prepend(ByteCodeAppender byteCodeAppender)Prepends the given method appender to this entry. | 
| TypeWriter.MethodPool.Record | TypeWriter.MethodPool.Record.ForDefinedMethod.WithBody. prepend(ByteCodeAppender byteCodeAppender)Prepends the given method appender to this entry. | 
| TypeWriter.MethodPool.Record | TypeWriter.MethodPool.Record.ForDefinedMethod.WithoutBody. prepend(ByteCodeAppender byteCodeAppender)Prepends the given method appender to this entry. | 
| TypeWriter.MethodPool.Record | TypeWriter.MethodPool.Record.ForDefinedMethod.WithAnnotationDefaultValue. prepend(ByteCodeAppender byteCodeAppender)Prepends the given method appender to this entry. | 
| TypeWriter.MethodPool.Record | TypeWriter.MethodPool.Record.ForDefinedMethod.OfVisibilityBridge. prepend(ByteCodeAppender byteCodeAppender)Prepends the given method appender to this entry. | 
| TypeWriter.MethodPool.Record | TypeWriter.MethodPool.Record.AccessBridgeWrapper. prepend(ByteCodeAppender byteCodeAppender)Prepends the given method appender to this entry. | 
| InstrumentedType | InstrumentedType. withInitializer(ByteCodeAppender byteCodeAppender)Creates a new instrumented type that executes the given initializer in the instrumented type's
 type initializer. | 
| InstrumentedType.WithFlexibleName | InstrumentedType.WithFlexibleName. withInitializer(ByteCodeAppender byteCodeAppender)Creates a new instrumented type that executes the given initializer in the instrumented type's
 type initializer. | 
| InstrumentedType.WithFlexibleName | InstrumentedType.Default. withInitializer(ByteCodeAppender byteCodeAppender)Creates a new instrumented type that executes the given initializer in the instrumented type's
 type initializer. | 
| InstrumentedType.WithFlexibleName | InstrumentedType.Frozen. withInitializer(ByteCodeAppender byteCodeAppender)Creates a new instrumented type that executes the given initializer in the instrumented type's
 type initializer. | 
| Constructor and Description | 
|---|
| Compiled(ByteCodeAppender byteCodeAppender)Creates a new compiled handler for a method implementation. | 
| Simple(ByteCodeAppender byteCodeAppender)Creates a new simple type initializer. | 
| WithBody(MethodDescription methodDescription,
        ByteCodeAppender byteCodeAppender)Creates a new record for an implemented method without attributes or a modifier resolver. | 
| WithBody(MethodDescription methodDescription,
        ByteCodeAppender byteCodeAppender,
        MethodAttributeAppender methodAttributeAppender,
        Visibility visibility)Creates a new entry for a method that defines a method as byte code. | 
| Modifier and Type | Method and Description | 
|---|---|
| DynamicType.Builder<T> | DecoratingDynamicTypeBuilder. initializer(ByteCodeAppender byteCodeAppender)
 Executes the supplied byte code appender within the beginning of the instrumented type's type initializer. | 
| Modifier and Type | Class and Description | 
|---|---|
| protected static class  | DefaultMethodCall.AppenderThe appender for implementing a  DefaultMethodCall. | 
| protected static class  | EqualsMethod.AppenderA byte code appender to implement the  EqualsMethod. | 
| class  | ExceptionMethodThis implementation causes a  Throwableto be thrown when the instrumented method is invoked. | 
| protected class  | FieldAccessor.ForImplicitProperty.AppenderAn byte code appender for an field accessor implementation. | 
| protected class  | FieldAccessor.ForSetter.AppenderAn appender to implement a field setter. | 
| protected static class  | FixedValue.ForArgumentA fixed value implementation that returns a method's argument. | 
| protected static class  | FixedValue.ForConstantValueA fixed value implementation that represents its fixed value as a constant pool value or a byte code instruction. | 
| protected static class  | FixedValue.ForNullValueA fixed value of  null. | 
| protected class  | FixedValue.ForOriginType.AppenderAn appender for writing the origin type. | 
| protected static class  | FixedValue.ForThisValue.AppenderA byte code appender for returning  this. | 
| protected static class  | HashCodeMethod.AppenderA byte code appender to implement a hash code method. | 
| protected static class  | Implementation.Context.Default.AccessorMethodDelegationAn implementation of a  TypeWriter.MethodPool.Recordfor implementing
 an accessor method. | 
| protected static class  | Implementation.Context.Default.DelegationRecordAn abstract method pool entry that delegates the implementation of a method to itself. | 
| protected static class  | Implementation.Context.Default.FieldGetterDelegationAn implementation for a field getter. | 
| protected static class  | Implementation.Context.Default.FieldSetterDelegationAn implementation for a field setter. | 
| protected class  | Implementation.Simple.ForDispatcher.AppenderAn appender for a dispatcher-based simple implementation. | 
| protected class  | InvocationHandlerAdapter.ForField.AppenderAn appender for implementing the  InvocationHandlerAdapter.ForField. | 
| protected class  | InvocationHandlerAdapter.ForInstance.AppenderAn appender for implementing the  InvocationHandlerAdapter.ForInstance. | 
| protected class  | InvokeDynamic.AppenderThe byte code appender to be used by the  InvokeDynamicimplementation. | 
| protected class  | MethodCall.AppenderThe appender being used to implement a  MethodCall. | 
| protected static class  | MethodCall.FieldSetting.AppenderA byte code appender to implement a field-setting method call. | 
| protected static class  | MethodDelegation.AppenderThe appender for implementing a  MethodDelegation. | 
| class  | StubMethodThis implementation creates a method stub which does nothing but returning the default value of the return
 type of the method. | 
| protected static class  | SuperMethodCall.AppenderAn appender for implementing a  SuperMethodCall. | 
| protected static class  | ToStringMethod.AppenderAn appender to implement  ToStringMethod. | 
| Modifier and Type | Method and Description | 
|---|---|
| ByteCodeAppender | StubMethod. appender(Implementation.Target implementationTarget)Creates a byte code appender that determines the implementation of the instrumented type's methods. | 
| ByteCodeAppender | EqualsMethod. appender(Implementation.Target implementationTarget)Creates a byte code appender that determines the implementation of the instrumented type's methods. | 
| ByteCodeAppender | InvocationHandlerAdapter.ForInstance. appender(Implementation.Target implementationTarget)Creates a byte code appender that determines the implementation of the instrumented type's methods. | 
| ByteCodeAppender | InvocationHandlerAdapter.ForField. appender(Implementation.Target implementationTarget)Creates a byte code appender that determines the implementation of the instrumented type's methods. | 
| ByteCodeAppender | FieldAccessor.ForImplicitProperty. appender(Implementation.Target implementationTarget)Creates a byte code appender that determines the implementation of the instrumented type's methods. | 
| ByteCodeAppender | FieldAccessor.ForSetter. appender(Implementation.Target implementationTarget)Creates a byte code appender that determines the implementation of the instrumented type's methods. | 
| ByteCodeAppender | SuperMethodCall. appender(Implementation.Target implementationTarget)Creates a byte code appender that determines the implementation of the instrumented type's methods. | 
| ByteCodeAppender | SuperMethodCall.WithoutReturn. appender(Implementation.Target implementationTarget)Creates a byte code appender that determines the implementation of the instrumented type's methods. | 
| ByteCodeAppender | ExceptionMethod. appender(Implementation.Target implementationTarget)Creates a byte code appender that determines the implementation of the instrumented type's methods. | 
| ByteCodeAppender | DefaultMethodCall. appender(Implementation.Target implementationTarget)Creates a byte code appender that determines the implementation of the instrumented type's methods. | 
| ByteCodeAppender | HashCodeMethod. appender(Implementation.Target implementationTarget)Creates a byte code appender that determines the implementation of the instrumented type's methods. | 
| ByteCodeAppender | InvokeDynamic. appender(Implementation.Target implementationTarget)Creates a byte code appender that determines the implementation of the instrumented type's methods. | 
| ByteCodeAppender | InvokeDynamic.AbstractDelegator. appender(Implementation.Target implementationTarget)Creates a byte code appender that determines the implementation of the instrumented type's methods. | 
| ByteCodeAppender | FixedValue.ForNullValue. appender(Implementation.Target implementationTarget)Creates a byte code appender that determines the implementation of the instrumented type's methods. | 
| ByteCodeAppender | FixedValue.ForOriginType. appender(Implementation.Target implementationTarget)Creates a byte code appender that determines the implementation of the instrumented type's methods. | 
| ByteCodeAppender | FixedValue.ForThisValue. appender(Implementation.Target implementationTarget)Creates a byte code appender that determines the implementation of the instrumented type's methods. | 
| ByteCodeAppender | FixedValue.ForArgument. appender(Implementation.Target implementationTarget)Creates a byte code appender that determines the implementation of the instrumented type's methods. | 
| ByteCodeAppender | FixedValue.ForConstantValue. appender(Implementation.Target implementationTarget)Creates a byte code appender that determines the implementation of the instrumented type's methods. | 
| ByteCodeAppender | FixedValue.ForValue. appender(Implementation.Target implementationTarget)Creates a byte code appender that determines the implementation of the instrumented type's methods. | 
| ByteCodeAppender | MethodDelegation. appender(Implementation.Target implementationTarget)Creates a byte code appender that determines the implementation of the instrumented type's methods. | 
| ByteCodeAppender | MethodCall. appender(Implementation.Target implementationTarget)Creates a byte code appender that determines the implementation of the instrumented type's methods. | 
| ByteCodeAppender | MethodCall.FieldSetting. appender(Implementation.Target implementationTarget)Creates a byte code appender that determines the implementation of the instrumented type's methods. | 
| ByteCodeAppender | Implementation. appender(Implementation.Target implementationTarget)Creates a byte code appender that determines the implementation of the instrumented type's methods. | 
| ByteCodeAppender | Implementation.Compound. appender(Implementation.Target implementationTarget)Creates a byte code appender that determines the implementation of the instrumented type's methods. | 
| ByteCodeAppender | Implementation.Compound.Composable. appender(Implementation.Target implementationTarget)Creates a byte code appender that determines the implementation of the instrumented type's methods. | 
| ByteCodeAppender | Implementation.Simple. appender(Implementation.Target implementationTarget)Creates a byte code appender that determines the implementation of the instrumented type's methods. | 
| ByteCodeAppender | Implementation.Simple.ForDispatcher. appender(Implementation.Target implementationTarget)Creates a byte code appender that determines the implementation of the instrumented type's methods. | 
| protected ByteCodeAppender | Implementation.Context.Default.FieldCacheEntry. storeIn(FieldDescription fieldDescription)Returns a stack manipulation where the represented value is stored in the given field. | 
| Modifier and Type | Method and Description | 
|---|---|
| TypeWriter.MethodPool.Record | Implementation.Context.Default.DelegationRecord. prepend(ByteCodeAppender byteCodeAppender)Prepends the given method appender to this entry. | 
| Constructor and Description | 
|---|
| Simple(ByteCodeAppender... byteCodeAppender)Creates a new simple implementation for the given byte code appenders. | 
| Modifier and Type | Class and Description | 
|---|---|
| protected static class  | MethodCallProxy.ConstructorCall.AppenderThe appender for implementing the  MethodCallProxy.ConstructorCall. | 
| protected class  | MethodCallProxy.MethodCall.AppenderThe appender for implementing the  MethodCallProxy.MethodCall. | 
| protected class  | TypeProxy.MethodCall.AppenderImplementation of a byte code appender for a  TypeProxy.MethodCall. | 
| protected static class  | TypeProxy.SilentConstruction.AppenderThe appender for implementing a  TypeProxy.SilentConstruction. | 
| Modifier and Type | Method and Description | 
|---|---|
| ByteCodeAppender | TypeProxy.SilentConstruction. appender(Implementation.Target implementationTarget)Creates a byte code appender that determines the implementation of the instrumented type's methods. | 
| ByteCodeAppender | TypeProxy.MethodCall. appender(Implementation.Target implementationTarget)Creates a byte code appender that determines the implementation of the instrumented type's methods. | 
| ByteCodeAppender | MethodCallProxy.ConstructorCall. appender(Implementation.Target implementationTarget)Creates a byte code appender that determines the implementation of the instrumented type's methods. | 
| ByteCodeAppender | MethodCallProxy.MethodCall. appender(Implementation.Target implementationTarget)Creates a byte code appender that determines the implementation of the instrumented type's methods. | 
| Modifier and Type | Class and Description | 
|---|---|
| protected class  | FieldProxy.Binder.FieldGetter.AppenderA byte code appender for a getter method. | 
| protected class  | FieldProxy.Binder.FieldSetter.AppenderA byte code appender for a setter method. | 
| protected static class  | FieldProxy.Binder.InstanceFieldConstructor.AppenderAn appender for implementing an
  FieldProxy.Binder.InstanceFieldConstructor. | 
| protected static class  | Morph.Binder.RedirectionProxy.InstanceFieldConstructor.AppenderThe byte code appender that implements the constructor. | 
| protected class  | Morph.Binder.RedirectionProxy.MethodCall.AppenderThe byte code appender to implement the method. | 
| Modifier and Type | Method and Description | 
|---|---|
| ByteCodeAppender | FieldProxy.Binder.StaticFieldConstructor. appender(Implementation.Target implementationTarget)Creates a byte code appender that determines the implementation of the instrumented type's methods. | 
| ByteCodeAppender | FieldProxy.Binder.InstanceFieldConstructor. appender(Implementation.Target implementationTarget)Creates a byte code appender that determines the implementation of the instrumented type's methods. | 
| ByteCodeAppender | FieldProxy.Binder.FieldGetter. appender(Implementation.Target implementationTarget)Creates a byte code appender that determines the implementation of the instrumented type's methods. | 
| ByteCodeAppender | FieldProxy.Binder.FieldSetter. appender(Implementation.Target implementationTarget)Creates a byte code appender that determines the implementation of the instrumented type's methods. | 
| ByteCodeAppender | Pipe.Binder.RedirectionProxy.ConstructorCall. appender(Implementation.Target implementationTarget)Creates a byte code appender that determines the implementation of the instrumented type's methods. | 
| ByteCodeAppender | Pipe.Binder.RedirectionProxy.MethodCall. appender(Implementation.Target implementationTarget)Creates a byte code appender that determines the implementation of the instrumented type's methods. | 
| ByteCodeAppender | Morph.Binder.RedirectionProxy.StaticFieldConstructor. appender(Implementation.Target implementationTarget)Creates a byte code appender that determines the implementation of the instrumented type's methods. | 
| ByteCodeAppender | Morph.Binder.RedirectionProxy.InstanceFieldConstructor. appender(Implementation.Target implementationTarget)Creates a byte code appender that determines the implementation of the instrumented type's methods. | 
| ByteCodeAppender | Morph.Binder.RedirectionProxy.MethodCall. appender(Implementation.Target implementationTarget)Creates a byte code appender that determines the implementation of the instrumented type's methods. | 
| Modifier and Type | Class and Description | 
|---|---|
| static class  | ByteCodeAppender.CompoundA compound appender that combines a given number of other byte code appenders. | 
| static class  | ByteCodeAppender.SimpleA simple byte code appender that only represents a given array of
  StackManipulations. | 
| Constructor and Description | 
|---|
| Compound(ByteCodeAppender... byteCodeAppender)Creates a new compound byte code appender. | 
| Constructor and Description | 
|---|
| Compound(List<? extends ByteCodeAppender> byteCodeAppenders)Creates a new compound byte code appender. | 
Copyright © 2014–2023. All rights reserved.