public static enum Instrumentation.ForAbstractMethod extends Enum<Instrumentation.ForAbstractMethod> implements Instrumentation, ByteCodeAppender
Instrumentation.Compound, Instrumentation.Context, Instrumentation.ForAbstractMethod, Instrumentation.SpecialMethodInvocation, Instrumentation.TargetByteCodeAppender.Compound, ByteCodeAppender.Simple, ByteCodeAppender.Size| Enum Constant and Description | 
|---|
| INSTANCEThe singleton instance. | 
| Modifier and Type | Method and Description | 
|---|---|
| ByteCodeAppender | appender(Instrumentation.Target instrumentationTarget)Creates a byte code appender that determines the implementation of the instrumented type's methods. | 
| boolean | appendsCode()Determines if this byte code appender offers an (possibly empty) implementation of a method. | 
| ByteCodeAppender.Size | apply(org.objectweb.asm.MethodVisitor methodVisitor,
     Instrumentation.Context instrumentationContext,
     MethodDescription instrumentedMethod)Applies this byte code appender to a type creation process. | 
| InstrumentedType | prepare(InstrumentedType instrumentedType)During the preparation phase of an instrumentation, implementations are eligible to adding fields or methods
 to the currently instrumented type. | 
| static Instrumentation.ForAbstractMethod | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static Instrumentation.ForAbstractMethod[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final Instrumentation.ForAbstractMethod INSTANCE
public static Instrumentation.ForAbstractMethod[] values()
for (Instrumentation.ForAbstractMethod c : Instrumentation.ForAbstractMethod.values()) System.out.println(c);
public static Instrumentation.ForAbstractMethod valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic InstrumentedType prepare(InstrumentedType instrumentedType)
InstrumentationByteCodeAppender that is emitted
 on the call to
 Instrumentation.appender(net.bytebuddy.instrumentation.Instrumentation.Target)
 call. On this method call, loaded type initializers can also be added to the instrumented type.prepare in interface InstrumentationinstrumentedType - The instrumented type that is the basis of the ongoing instrumentation.public ByteCodeAppender appender(Instrumentation.Target instrumentationTarget)
Instrumentationappender in interface InstrumentationinstrumentationTarget - The target of the current instrumentation.Instrumentation.prepare(net.bytebuddy.instrumentation.type.InstrumentedType).public boolean appendsCode()
ByteCodeAppenderappendsCode in interface ByteCodeAppendertrue if this byte code appender requires this method to be implemented or false if this
 appender describes an abstract method.public ByteCodeAppender.Size apply(org.objectweb.asm.MethodVisitor methodVisitor, Instrumentation.Context instrumentationContext, MethodDescription instrumentedMethod)
ByteCodeAppenderapply in interface ByteCodeAppendermethodVisitor - The method visitor to which the byte code appender writes its code to.instrumentationContext - The instrumentation context of the current type creation process.instrumentedMethod - The method that is the target of the instrumentation.Copyright © 2014. All rights reserved.