Record Class EconomyTransactionLog

java.lang.Object
java.lang.Record
fr.mathildeuh.youneedme.api.storage.EconomyTransactionLog

public record EconomyTransactionLog(long id, UUID player, String currencyId, double delta, double balanceAfter, String reason, @Nullable UUID relatedPlayer, long timestamp) extends Record
One audit entry in a player's economy history (deposit, withdraw, pay, purchase, ...).
  • Constructor Summary

    Constructors
    Constructor
    Description
    EconomyTransactionLog(long id, UUID player, String currencyId, double delta, double balanceAfter, String reason, @Nullable UUID relatedPlayer, long timestamp)
    Creates an instance of a EconomyTransactionLog record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    double
    Returns the value of the balanceAfter record component.
    Returns the value of the currencyId record component.
    double
    Returns the value of the delta record component.
    final boolean
    Indicates whether some other object is "equal to" this one.
    final int
    Returns a hash code value for this object.
    long
    id()
    Returns the value of the id record component.
    Returns the value of the player record component.
    Returns the value of the reason record component.
    @Nullable UUID
    Returns the value of the relatedPlayer record component.
    long
    Returns the value of the timestamp record component.
    final String
    Returns a string representation of this record class.

    Methods inherited from class Object

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

    • EconomyTransactionLog

      public EconomyTransactionLog(long id, UUID player, String currencyId, double delta, double balanceAfter, String reason, @Nullable @Nullable UUID relatedPlayer, long timestamp)
      Creates an instance of a EconomyTransactionLog record class.
      Parameters:
      id - the value for the id record component
      player - the value for the player record component
      currencyId - the value for the currencyId record component
      delta - the value for the delta record component
      balanceAfter - the value for the balanceAfter record component
      reason - the value for the reason record component
      relatedPlayer - the value for the relatedPlayer record component
      timestamp - the value for the timestamp record component
  • Method Details

    • 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. Reference components are compared with Objects::equals(Object,Object); primitive components are compared with the compare method from their corresponding wrapper classes.
      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.
    • id

      public long id()
      Returns the value of the id record component.
      Returns:
      the value of the id record component
    • player

      public UUID player()
      Returns the value of the player record component.
      Returns:
      the value of the player record component
    • currencyId

      public String currencyId()
      Returns the value of the currencyId record component.
      Returns:
      the value of the currencyId record component
    • delta

      public double delta()
      Returns the value of the delta record component.
      Returns:
      the value of the delta record component
    • balanceAfter

      public double balanceAfter()
      Returns the value of the balanceAfter record component.
      Returns:
      the value of the balanceAfter record component
    • reason

      public String reason()
      Returns the value of the reason record component.
      Returns:
      the value of the reason record component
    • relatedPlayer

      @Nullable public @Nullable UUID relatedPlayer()
      Returns the value of the relatedPlayer record component.
      Returns:
      the value of the relatedPlayer record component
    • timestamp

      public long timestamp()
      Returns the value of the timestamp record component.
      Returns:
      the value of the timestamp record component