Record Class TaskStatus.Item

java.lang.Object
java.lang.Record
com.refinedmods.refinedstorage.api.autocrafting.status.TaskStatus.Item
Enclosing class:
TaskStatus

public static record TaskStatus.Item(ResourceKey resource, TaskStatus.ItemType type, @Nullable ExternalPatternSinkKey sinkKey, long stored, long processing, long scheduled, long crafting) extends Record
  • Constructor Details

    • Item

      public Item(ResourceKey resource, TaskStatus.ItemType type, @Nullable ExternalPatternSinkKey sinkKey, long stored, long processing, long scheduled, long crafting)
      Creates an instance of a Item record class.
      Parameters:
      resource - the value for the resource record component
      type - the value for the type record component
      sinkKey - the value for the sinkKey record component
      stored - the value for the stored record component
      processing - the value for the processing record component
      scheduled - the value for the scheduled record component
      crafting - the value for the crafting 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 '=='.
      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.
    • resource

      public ResourceKey resource()
      Returns the value of the resource record component.
      Returns:
      the value of the resource record component
    • type

      public TaskStatus.ItemType type()
      Returns the value of the type record component.
      Returns:
      the value of the type record component
    • sinkKey

      @Nullable public ExternalPatternSinkKey sinkKey()
      Returns the value of the sinkKey record component.
      Returns:
      the value of the sinkKey record component
    • stored

      public long stored()
      Returns the value of the stored record component.
      Returns:
      the value of the stored record component
    • processing

      public long processing()
      Returns the value of the processing record component.
      Returns:
      the value of the processing record component
    • scheduled

      public long scheduled()
      Returns the value of the scheduled record component.
      Returns:
      the value of the scheduled record component
    • crafting

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