Package net.minecraftforge.network
Record Class NetworkContext.NetworkMismatchData.Version
java.lang.Object
java.lang.Record
net.minecraftforge.network.NetworkContext.NetworkMismatchData.Version
- Enclosing class:
- NetworkContext.NetworkMismatchData
- 
Field SummaryFields
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.had()Returns the value of thehadrecord component.final inthashCode()Returns a hash code value for this object.received()Returns the value of thereceivedrecord component.final StringtoString()Returns a string representation of this record class.
- 
Field Details- 
receivedThe field for thereceivedrecord component.
- 
hadThe field for thehadrecord component.
 
- 
- 
Constructor Details- 
VersionCreates an instance of aVersionrecord class.- Parameters:
- received- the value for the- receivedrecord component
- had- the value for the- hadrecord component
 
 
- 
- 
Method Details- 
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).
- 
receivedReturns the value of thereceivedrecord component.- Returns:
- the value of the receivedrecord component
 
- 
hadReturns the value of thehadrecord component.- Returns:
- the value of the hadrecord component
 
 
-