public enum SuperMethodCall extends Enum<SuperMethodCall> implements Instrumentation
Instrumentation
.Modifier and Type | Class and Description |
---|---|
protected static class |
SuperMethodCall.Appender
An appender for implementing a
SuperMethodCall . |
protected static class |
SuperMethodCall.WithoutReturn
A super method invocation where the return value is dropped instead of returning from the method.
|
Instrumentation.Compound, Instrumentation.Context, Instrumentation.ForAbstractMethod, Instrumentation.Simple, Instrumentation.SpecialMethodInvocation, Instrumentation.Target
Enum Constant and Description |
---|
INSTANCE
The singleton instance.
|
Modifier and Type | Method and Description |
---|---|
Instrumentation |
andThen(Instrumentation instrumentation)
Appends another instrumentation to a super method call.
|
ByteCodeAppender |
appender(Instrumentation.Target instrumentationTarget)
Creates a byte code appender that determines the implementation of the instrumented type's methods.
|
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 SuperMethodCall |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SuperMethodCall[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SuperMethodCall INSTANCE
public static SuperMethodCall[] values()
for (SuperMethodCall c : SuperMethodCall.values()) System.out.println(c);
public static SuperMethodCall 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)
Instrumentation
ByteCodeAppender
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 Instrumentation
instrumentedType
- The instrumented type that is the basis of the ongoing instrumentation.public ByteCodeAppender appender(Instrumentation.Target instrumentationTarget)
Instrumentation
appender
in interface Instrumentation
instrumentationTarget
- The target of the current instrumentation.Instrumentation.prepare(net.bytebuddy.instrumentation.type.InstrumentedType)
.public Instrumentation andThen(Instrumentation instrumentation)
instrumentation
- The instrumentation to append.Copyright © 2014–2015. All rights reserved.