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 Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.had()
Returns the value of thehad
record component.final int
hashCode()
Returns a hash code value for this object.received()
Returns the value of thereceived
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
received
The field for thereceived
record component. -
had
The field for thehad
record component.
-
-
Constructor Details
-
Version
Creates an instance of aVersion
record class.- Parameters:
received
- the value for thereceived
record componenthad
- the value for thehad
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)
. -
received
Returns the value of thereceived
record component.- Returns:
- the value of the
received
record component
-
had
Returns the value of thehad
record component.- Returns:
- the value of the
had
record component
-