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 SummaryFieldsModifier and TypeFieldDescriptionprivate final ServerLevelThe field for thedimensionrecord component.private final BlockPosThe field for thepositionrecord component.
- 
Constructor SummaryConstructorsConstructorDescriptionDimensionAndPosition(ServerLevel dimension, BlockPos position) Creates an instance of aDimensionAndPositionrecord class.
- 
Method SummaryModifier 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- 
dimensionThe field for thedimensionrecord component.
- 
positionThe field for thepositionrecord component.
 
- 
- 
Constructor Details- 
DimensionAndPositionDimensionAndPosition(ServerLevel dimension, BlockPos position) Creates an instance of aDimensionAndPositionrecord class.- Parameters:
- dimension- the value for the- dimensionrecord component
- position- the value for the- positionrecord component
 
 
- 
- 
Method Details- 
toStringReturns 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.
- 
hashCodepublic 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.
- 
equalsIndicates 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).
- 
dimensionReturns the value of thedimensionrecord component.- Returns:
- the value of the dimensionrecord component
 
- 
positionReturns the value of thepositionrecord component.- Returns:
- the value of the positionrecord component
 
 
-