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 
    Represents an invokedynamic instruction that is the target of a substitution.
    static class 
    Represents a member that is the target of a substitution.
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the (internal) name of the target.
    boolean
    Determines if the target is dispatched statically.
  • Method Details

    • getName

      String getName()
      Returns the (internal) name of the target.
      Returns:
      The name of the target.
    • isStaticDispatch

      boolean isStaticDispatch()
      Determines if the target is dispatched statically.
      Returns:
      true if the target is dispatched statically.