Record Class MultiLineTextWidget.CacheKey
java.lang.Object
java.lang.Record
net.minecraft.client.gui.components.MultiLineTextWidget.CacheKey
- Enclosing class:
- MultiLineTextWidget
static record MultiLineTextWidget.CacheKey(Component message, int maxWidth, OptionalInt maxRows)
extends Record
-
Field Summary
Modifier and TypeFieldDescriptionprivate final OptionalInt
The field for themaxRows
record component.private final int
The field for themaxWidth
record component.private final Component
The field for themessage
record component. -
Constructor Summary
ConstructorDescriptionCacheKey
(Component message, int maxWidth, OptionalInt maxRows) Creates an instance of aCacheKey
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.maxRows()
Returns the value of themaxRows
record component.int
maxWidth()
Returns the value of themaxWidth
record component.message()
Returns the value of themessage
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
message
The field for themessage
record component. -
maxWidth
private final int maxWidthThe field for themaxWidth
record component. -
maxRows
The field for themaxRows
record component.
-
-
Constructor Details
-
CacheKey
CacheKey(Component message, int maxWidth, OptionalInt maxRows) Creates an instance of aCacheKey
record class.- Parameters:
message
- the value for themessage
record componentmaxWidth
- the value for themaxWidth
record componentmaxRows
- the value for themaxRows
record component
-
-
Method Details
-
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. -
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. -
equals
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 withObjects::equals(Object,Object)
; primitive components are compared with '=='. -
message
Returns the value of themessage
record component.- Returns:
- the value of the
message
record component
-
maxWidth
public int maxWidth()Returns the value of themaxWidth
record component.- Returns:
- the value of the
maxWidth
record component
-
maxRows
Returns the value of themaxRows
record component.- Returns:
- the value of the
maxRows
record component
-