Record Class ParsingStateImpl.MemoizedValue<T>

java.lang.Object
java.lang.Record
net.minecraft.util.packrat.ParsingStateImpl.MemoizedValue<T>
Record Components:
value -
markAfterParse -
Enclosing class:
ParsingStateImpl<S>

private static record ParsingStateImpl.MemoizedValue<T>(T value, int markAfterParse) extends Record
Mappings:
Namespace Name
named net/minecraft/util/packrat/ParsingStateImpl$MemoizedValue
intermediary net/minecraft/class_10832$class_10833
official bsk$a
named value
intermediary comp_3787
official b
named markAfterParse
intermediary comp_3788
official c
  • Field Details

    • value

      @Nullable private final T value
      The field for the value record component.
    • markAfterParse

      private final int markAfterParse
      The field for the markAfterParse record component.
    • EMPTY

      public static final ParsingStateImpl.MemoizedValue<?> EMPTY
      Mappings:
      Namespace Name Mixin selector
      named EMPTY Lnet/minecraft/util/packrat/ParsingStateImpl$MemoizedValue;EMPTY:Lnet/minecraft/util/packrat/ParsingStateImpl$MemoizedValue;
      intermediary field_57515 Lnet/minecraft/class_10832$class_10833;field_57515:Lnet/minecraft/class_10832$class_10833;
      official a Lbsk$a;a:Lbsk$a;
  • Constructor Details

    • MemoizedValue

      MemoizedValue(@Nullable T t, int int2)
  • Method Details

    • empty

      public static <T> ParsingStateImpl.MemoizedValue<T> empty()
      Mappings:
      Namespace Name Mixin selector
      named empty Lnet/minecraft/util/packrat/ParsingStateImpl$MemoizedValue;empty()Lnet/minecraft/util/packrat/ParsingStateImpl$MemoizedValue;
      intermediary method_68193 Lnet/minecraft/class_10832$class_10833;method_68193()Lnet/minecraft/class_10832$class_10833;
      official a Lbsk$a;a()Lbsk$a;
    • 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 object)
      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:
      object - the object with which to compare
      Returns:
      true if this object is the same as the object argument; false otherwise.
    • value

      @Nullable public T value()
      Returns the value of the value record component.
      Returns:
      the value of the value record component
    • markAfterParse

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