Package org.geysermc.geyser.dump
Record Class DumpInfo.MappingInfo
java.lang.Object
java.lang.Record
org.geysermc.geyser.dump.DumpInfo.MappingInfo
- Enclosing class:
DumpInfo
public static record DumpInfo.MappingInfo(int customBlocks, int customSkulls, int customItems)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionMappingInfo(int customBlocks, int customSkulls, int customItems) Creates an instance of aMappingInforecord class. -
Method Summary
Modifier and TypeMethodDescriptionintReturns the value of thecustomBlocksrecord component.intReturns the value of thecustomItemsrecord component.intReturns the value of thecustomSkullsrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
MappingInfo
public MappingInfo(int customBlocks, int customSkulls, int customItems) Creates an instance of aMappingInforecord class.- Parameters:
customBlocks- the value for thecustomBlocksrecord componentcustomSkulls- the value for thecustomSkullsrecord componentcustomItems- the value for thecustomItemsrecord 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 '=='. -
customBlocks
public int customBlocks()Returns the value of thecustomBlocksrecord component.- Returns:
- the value of the
customBlocksrecord component
-
customSkulls
public int customSkulls()Returns the value of thecustomSkullsrecord component.- Returns:
- the value of the
customSkullsrecord component
-
customItems
public int customItems()Returns the value of thecustomItemsrecord component.- Returns:
- the value of the
customItemsrecord component
-