Record Class CloneCommands.DimensionAndPosition
java.lang.Object
java.lang.Record
net.minecraft.server.commands.CloneCommands.DimensionAndPosition
- Enclosing class:
CloneCommands
private 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
ConstructorsModifierConstructorDescriptionprivateDimensionAndPosition(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
Creates an instance of aDimensionAndPositionrecord class.- Parameters:
dimension- the value for thedimensionrecord componentposition- the value for thepositionrecord component
-
-
Method Details
-
toString
-
hashCode
-
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
-