Record Class GuiComputedValue<T>

java.lang.Object
java.lang.Record
com.render.api.gui.style.GuiComputedValue<T>
Type Parameters:
T - property type
Record Components:
value - detached computed value
source - winning cascade source
matchedRule - winning rule when sourced from a stylesheet
inheritedFromId - originating parent ID for inherited values, when available

public record GuiComputedValue<T>(T value, GuiPropertySource source, GuiMatchedRule matchedRule, String inheritedFromId) extends Record
A resolved property value plus cascade trace information.
  • Constructor Details

    • GuiComputedValue

      public GuiComputedValue(T value, GuiPropertySource source, GuiMatchedRule matchedRule, String inheritedFromId)
      Creates an instance of a GuiComputedValue record class.
      Parameters:
      value - the value for the value record component
      source - the value for the source record component
      matchedRule - the value for the matchedRule record component
      inheritedFromId - the value for the inheritedFromId 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.
    • value

      public T value()
      Returns the value of the value record component.
      Returns:
      the value of the value record component
    • source

      public GuiPropertySource source()
      Returns the value of the source record component.
      Returns:
      the value of the source record component
    • matchedRule

      public GuiMatchedRule matchedRule()
      Returns the value of the matchedRule record component.
      Returns:
      the value of the matchedRule record component
    • inheritedFromId

      public String inheritedFromId()
      Returns the value of the inheritedFromId record component.
      Returns:
      the value of the inheritedFromId record component