Package net.minecraftforge.registries
Record Class IdMappingEvent.IdRemapping
java.lang.Object
java.lang.Record
net.minecraftforge.registries.IdMappingEvent.IdRemapping
- Enclosing class:
- IdMappingEvent
-
Field Summary
-
Constructor Summary
ConstructorDescriptionIdRemapping
(int currId, int newId) Creates an instance of aIdRemapping
record class. -
Method Summary
Modifier and TypeMethodDescriptionint
currId()
Returns the value of thecurrId
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.int
newId()
Returns the value of thenewId
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
currId
private final int currIdThe field for thecurrId
record component. -
newId
private final int newIdThe field for thenewId
record component.
-
-
Constructor Details
-
IdRemapping
public IdRemapping(int currId, int newId) Creates an instance of aIdRemapping
record class.- Parameters:
currId
- the value for thecurrId
record componentnewId
- the value for thenewId
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 with '=='. -
currId
public int currId()Returns the value of thecurrId
record component.- Returns:
- the value of the
currId
record component
-
newId
public int newId()Returns the value of thenewId
record component.- Returns:
- the value of the
newId
record component
-