Package net.minecraft.client.multiplayer
Record Class ProfileKeyPairManager.Result
java.lang.Object
java.lang.Record
net.minecraft.client.multiplayer.ProfileKeyPairManager.Result
- Enclosing class:
- ProfileKeyPairManager
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final ProfileKeyPairThe field for thekeyPairrecord component.private final SignerThe field for thesignerrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionResult(ProfileKeyPair p_243382_) Result(ProfileKeyPair keyPair, Signer signer) Creates an instance of aResultrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal 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.signer()Returns the value of thesignerrecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
keyPair
The field for thekeyPairrecord component. -
signer
The field for thesignerrecord component.
-
-
Constructor Details
-
Result
-
Result
Result(ProfileKeyPair keyPair, Signer signer) Creates an instance of aResultrecord class.- Parameters:
keyPair- the value for thekeyPairrecord componentsigner- the value for thesignerrecord 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. All components in this record class are compared withObjects::equals(Object,Object). -
keyPair
Returns the value of thekeyPairrecord component.- Returns:
- the value of the
keyPairrecord component
-
signer
Returns the value of thesignerrecord component.- Returns:
- the value of the
signerrecord component
-