Enum Class MethodDelegationBinder.Record.Illegal

java.lang.Object
java.lang.Enum<MethodDelegationBinder.Record.Illegal>
net.bytebuddy.implementation.bind.MethodDelegationBinder.Record.Illegal
All Implemented Interfaces:
Serializable, Comparable<MethodDelegationBinder.Record.Illegal>, Constable, MethodDelegationBinder.Record
Enclosing interface:
MethodDelegationBinder.Record

public static enum MethodDelegationBinder.Record.Illegal extends Enum<MethodDelegationBinder.Record.Illegal> implements MethodDelegationBinder.Record
A compiled method delegation binder that only yields illegal bindings.
  • Enum Constant Details

  • Constructor Details

    • Illegal

      private Illegal()
  • Method Details

    • values

      public static MethodDelegationBinder.Record.Illegal[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static MethodDelegationBinder.Record.Illegal valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • bind

      Attempts a binding of a source method to this compiled target.
      Specified by:
      bind in interface MethodDelegationBinder.Record
      Parameters:
      implementationTarget - The target of the current implementation onto which this binding is to be applied.
      source - The method that is to be bound to the target method.
      terminationHandler - The termination handler to apply.
      methodInvoker - The method invoker to use.
      assigner - The assigner to use.
      Returns:
      A binding representing this attempt to bind the source method to the target method.