Package net.bytebuddy

Enum ByteBuddy.RecordObjectMethod

    • Field Detail

      • name

        private final java.lang.String name
        The method name.
      • stackManipulation

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

        private final java.util.List<? extends TypeDescription> arguments
        The arguments type.
    • Constructor Detail

      • RecordObjectMethod

        private RecordObjectMethod​(java.lang.String name,
                                   StackManipulation stackManipulation,
                                   java.lang.Class<?> returnType,
                                   java.lang.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 Detail

      • values

        public static ByteBuddy.RecordObjectMethod[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (ByteBuddy.RecordObjectMethod c : ByteBuddy.RecordObjectMethod.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static ByteBuddy.RecordObjectMethod valueOf​(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.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).