Record Class ChatListener.Message
java.lang.Object
java.lang.Record
net.minecraft.client.multiplayer.chat.ChatListener.Message
- Enclosing class:
- ChatListener
static record ChatListener.Message(@Nullable MessageSignature signature, BooleanSupplier handler)
extends Record
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final BooleanSupplierThe field for thehandlerrecord component.private final MessageSignatureThe field for thesignaturerecord component. -
Constructor Summary
ConstructorsConstructorDescriptionMessage(MessageSignature signature, BooleanSupplier handler) Creates an instance of aMessagerecord class. -
Method Summary
Modifier and TypeMethodDescriptionbooleanaccept()final booleanIndicates whether some other object is "equal to" this one.handler()Returns the value of thehandlerrecord component.final inthashCode()Returns a hash code value for this object.Returns the value of thesignaturerecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
signature
The field for thesignaturerecord component. -
handler
The field for thehandlerrecord component.
-
-
Constructor Details
-
Message
Message(@Nullable MessageSignature signature, BooleanSupplier handler) Creates an instance of aMessagerecord class.- Parameters:
signature- the value for thesignaturerecord componenthandler- the value for thehandlerrecord component
-
-
Method Details
-
accept
public boolean accept() -
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. All components in this record class are compared withObjects::equals(Object,Object). -
signature
Returns the value of thesignaturerecord component.- Returns:
- the value of the
signaturerecord component
-
handler
Returns the value of thehandlerrecord component.- Returns:
- the value of the
handlerrecord component
-