Record Class CooldownStatus

java.lang.Object
java.lang.Record
gg.xp.xivsupport.events.state.combatstate.CooldownStatus

public record CooldownStatus(@NotNull CdTrackingKey cdKey, @Nullable AbilityUsedEvent used, @Nullable BuffApplied buff, @Nullable Instant replenishedAt) extends Record
  • Constructor Details

    • CooldownStatus

      public CooldownStatus(@NotNull @NotNull CdTrackingKey cdKey, @Nullable @Nullable AbilityUsedEvent used, @Nullable @Nullable BuffApplied buff, @Nullable @Nullable Instant replenishedAt)
      Creates an instance of a CooldownStatus record class.
      Parameters:
      cdKey - the value for the cdKey record component
      used - the value for the used record component
      buff - the value for the buff record component
      replenishedAt - the value for the replenishedAt 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. 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.
    • cdKey

      @NotNull public @NotNull CdTrackingKey cdKey()
      Returns the value of the cdKey record component.
      Returns:
      the value of the cdKey record component
    • used

      @Nullable public @Nullable AbilityUsedEvent used()
      Returns the value of the used record component.
      Returns:
      the value of the used record component
    • buff

      @Nullable public @Nullable BuffApplied buff()
      Returns the value of the buff record component.
      Returns:
      the value of the buff record component
    • replenishedAt

      @Nullable public @Nullable Instant replenishedAt()
      Returns the value of the replenishedAt record component.
      Returns:
      the value of the replenishedAt record component