Package net.bytebuddy.asm
Interface MemberSubstitution.Target
-
- All Known Implementing Classes:
MemberSubstitution.Target.ForDynamicInvocation
,MemberSubstitution.Target.ForMember
- Enclosing class:
- MemberSubstitution
public static interface MemberSubstitution.Target
Representation of a substitution target within a method body.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
MemberSubstitution.Target.ForDynamicInvocation
Represents an invokedynamic instruction that is the target of a substitution.static class
MemberSubstitution.Target.ForMember
Represents a member that is the target of a substitution.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getName()
Returns the (internal) name of the target.boolean
isStaticDispatch()
Determines if the target is dispatched statically.
-