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
Modifier and TypeFieldDescriptionprivate final ProfileKeyPair
The field for thekeyPair
record component.private final Signer
The field for thesigner
record component. -
Constructor Summary
ConstructorDescriptionResult
(ProfileKeyPair p_243382_) Result
(ProfileKeyPair keyPair, Signer signer) Creates an instance of aResult
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.keyPair()
Returns the value of thekeyPair
record component.signer()
Returns the value of thesigner
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
keyPair
The field for thekeyPair
record component. -
signer
The field for thesigner
record component.
-
-
Constructor Details
-
Result
-
Result
Result(ProfileKeyPair keyPair, Signer signer) Creates an instance of aResult
record class.- Parameters:
keyPair
- the value for thekeyPair
record componentsigner
- the value for thesigner
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. All components in this record class are compared withObjects::equals(Object,Object)
. -
keyPair
Returns the value of thekeyPair
record component.- Returns:
- the value of the
keyPair
record component
-
signer
Returns the value of thesigner
record component.- Returns:
- the value of the
signer
record component
-