Package net.minecraft.network.chat
Record Class LocalChatSession
java.lang.Object
java.lang.Record
net.minecraft.network.chat.LocalChatSession
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprivate final ProfileKeyPairThe field for thekeyPairrecord component.private final UUIDThe field for thesessionIdrecord component.
- 
Constructor SummaryConstructorsConstructorDescriptionLocalChatSession(UUID sessionId, ProfileKeyPair keyPair) Creates an instance of aLocalChatSessionrecord class.
- 
Method SummaryModifier and TypeMethodDescriptionasRemote()static LocalChatSessioncreate(ProfileKeyPair p_250798_) createMessageEncoder(UUID p_251085_) final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.keyPair()Returns the value of thekeyPairrecord component.Returns the value of thesessionIdrecord component.final StringtoString()Returns a string representation of this record class.
- 
Field Details- 
sessionIdThe field for thesessionIdrecord component.
- 
keyPairThe field for thekeyPairrecord component.
 
- 
- 
Constructor Details- 
LocalChatSessionCreates an instance of aLocalChatSessionrecord class.- Parameters:
- sessionId- the value for the- sessionIdrecord component
- keyPair- the value for the- keyPairrecord component
 
 
- 
- 
Method Details- 
create
- 
createMessageEncoder
- 
asRemote
- 
toStringReturns 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.
- 
hashCodepublic 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.
- 
equalsIndicates 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).
- 
sessionIdReturns the value of thesessionIdrecord component.- Returns:
- the value of the sessionIdrecord component
 
- 
keyPairReturns the value of thekeyPairrecord component.- Returns:
- the value of the keyPairrecord component
 
 
-