Package net.minecraft.server.commands
Record Class CloneCommands.DimensionAndPosition
java.lang.Object
java.lang.Record
net.minecraft.server.commands.CloneCommands.DimensionAndPosition
- Enclosing class:
CloneCommands
static record CloneCommands.DimensionAndPosition(ServerLevel dimension, BlockPos position)
extends Record
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final ServerLevelThe field for thedimensionrecord component.private final BlockPosThe field for thepositionrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionDimensionAndPosition(ServerLevel dimension, BlockPos position) Creates an instance of aDimensionAndPositionrecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thedimensionrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.position()Returns the value of thepositionrecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
dimension
The field for thedimensionrecord component. -
position
The field for thepositionrecord component.
-
-
Constructor Details
-
DimensionAndPosition
DimensionAndPosition(ServerLevel dimension, BlockPos position) Creates an instance of aDimensionAndPositionrecord class.- Parameters:
dimension- the value for thedimensionrecord componentposition- the value for thepositionrecord 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). -
dimension
Returns the value of thedimensionrecord component.- Returns:
- the value of the
dimensionrecord component
-
position
Returns the value of thepositionrecord component.- Returns:
- the value of the
positionrecord component
-