Record Class Listeners.ReflectiveListenerWrapper

java.lang.Object
java.lang.Record
org.pdfsam.eventstudio.Listeners.ReflectiveListenerWrapper
All Implemented Interfaces:
Listeners.ListenerWrapper
Enclosing class:
Listeners

private static record Listeners.ReflectiveListenerWrapper(Object bean, Method method) extends Record implements Listeners.ListenerWrapper
Reflective invocation of an annotated listener
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    private final Object
    The field for the bean record component.
    private final Method
    The field for the method record component.
  • Constructor Summary

    Constructors
    Modifier
    Constructor
    Description
    private
    Creates an instance of a ReflectiveListenerWrapper record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the value of the bean record component.
    final boolean
    Indicates whether some other object is "equal to" this one.
    final int
    Returns a hash code value for this object.
    Returns the value of the method record component.
    void
     
    final String
    Returns a string representation of this record class.

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Field Details

    • bean

      private final Object bean
      The field for the bean record component.
    • method

      private final Method method
      The field for the method record component.
  • Constructor Details

    • ReflectiveListenerWrapper

      private ReflectiveListenerWrapper(Object bean, Method method)
      Creates an instance of a ReflectiveListenerWrapper record class.
      Parameters:
      bean - the value for the bean record component
      method - the value for the method record component
  • Method Details

    • onEvent

      public void onEvent(Envelope event)
      Specified by:
      onEvent in interface Listeners.ListenerWrapper
    • toString

      public final String toString()
      Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • hashCode

      public final int hashCode()
      Returns a hash code value for this object. The value is derived from the hash code of each of the record components.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared with Objects::equals(Object,Object).
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • bean

      public Object bean()
      Returns the value of the bean record component.
      Returns:
      the value of the bean record component
    • method

      public Method method()
      Returns the value of the method record component.
      Returns:
      the value of the method record component