Package net.bytebuddy

Enum Class ByteBuddy.RecordObjectMethod

java.lang.Object
java.lang.Enum<ByteBuddy.RecordObjectMethod>
net.bytebuddy.ByteBuddy.RecordObjectMethod
All Implemented Interfaces:
Serializable, Comparable<ByteBuddy.RecordObjectMethod>, Constable, InstrumentedType.Prepareable, Implementation
Enclosing class:
ByteBuddy

@Enhance protected static enum ByteBuddy.RecordObjectMethod extends Enum<ByteBuddy.RecordObjectMethod> implements Implementation
Implements the object methods of the Java record type.
  • Enum Constant Details

  • Field Details

    • name

      private final String name
      The method name.
    • stackManipulation

      private final StackManipulation stackManipulation
      The stack manipulation to append to the arguments.
    • returnType

      private final TypeDescription returnType
      The return type.
    • arguments

      private final List<? extends TypeDescription> arguments
      The arguments type.
  • Constructor Details

    • RecordObjectMethod

      private RecordObjectMethod(String name, StackManipulation stackManipulation, Class<?> returnType, Class<?>... arguments)
      Creates a new object method instance for a Java record.
      Parameters:
      name - The method name.
      stackManipulation - The stack manipulation to append to the arguments.
      returnType - The return type.
      arguments - The arguments type.
  • Method Details

    • values

      public static ByteBuddy.RecordObjectMethod[] 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 ByteBuddy.RecordObjectMethod 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
    • appender

      public ByteCodeAppender appender(Implementation.Target implementationTarget)
      Creates a byte code appender that determines the implementation of the instrumented type's methods.
      Specified by:
      appender in interface Implementation
      Parameters:
      implementationTarget - The target of the current implementation.
      Returns:
      A byte code appender for implementing methods delegated to this implementation. This byte code appender is also responsible for handling methods that were added by this implementation on the call to InstrumentedType.Prepareable.prepare(InstrumentedType).
    • prepare

      public InstrumentedType prepare(InstrumentedType instrumentedType)
      Prepares a given instrumented type.
      Specified by:
      prepare in interface InstrumentedType.Prepareable
      Parameters:
      instrumentedType - The instrumented type in its current form.
      Returns:
      The prepared instrumented type.