Record Class SubmitNodeStorage.BreakingBlockModelSubmit

java.lang.Object
java.lang.Record
net.minecraft.client.renderer.SubmitNodeStorage.BreakingBlockModelSubmit
Enclosing class:
SubmitNodeStorage

public static record SubmitNodeStorage.BreakingBlockModelSubmit(PoseStack.Pose pose, BlockStateModel model, long seed, int progress) extends Record
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    private final BlockStateModel
    The field for the model record component.
    private final PoseStack.Pose
    The field for the pose record component.
    private final int
    The field for the progress record component.
    private final long
    The field for the seed record component.
  • Constructor Summary

    Constructors
    Constructor
    Description
    BreakingBlockModelSubmit(PoseStack.Pose pose, BlockStateModel model, long seed, int progress)
    Creates an instance of a BreakingBlockModelSubmit record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    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 model record component.
    Returns the value of the pose record component.
    int
    Returns the value of the progress record component.
    long
    Returns the value of the seed 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
  • Field Details

    • pose

      private final PoseStack.Pose pose
      The field for the pose record component.
    • model

      private final BlockStateModel model
      The field for the model record component.
    • seed

      private final long seed
      The field for the seed record component.
    • progress

      private final int progress
      The field for the progress record component.
  • Constructor Details

    • BreakingBlockModelSubmit

      public BreakingBlockModelSubmit(PoseStack.Pose pose, BlockStateModel model, long seed, int progress)
      Creates an instance of a BreakingBlockModelSubmit record class.
      Parameters:
      pose - the value for the pose record component
      model - the value for the model record component
      seed - the value for the seed record component
      progress - the value for the progress 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.
    • pose

      public PoseStack.Pose pose()
      Returns the value of the pose record component.
      Returns:
      the value of the pose record component
    • model

      public BlockStateModel model()
      Returns the value of the model record component.
      Returns:
      the value of the model record component
    • seed

      public long seed()
      Returns the value of the seed record component.
      Returns:
      the value of the seed record component
    • progress

      public int progress()
      Returns the value of the progress record component.
      Returns:
      the value of the progress record component