Package net.minecraft.server.commands
Record Class CloneCommands.CloneBlockInfo
java.lang.Object
java.lang.Record
net.minecraft.server.commands.CloneCommands.CloneBlockInfo
- Enclosing class:
CloneCommands
static record CloneCommands.CloneBlockInfo(BlockPos pos, BlockState state, @Nullable CloneCommands.CloneBlockEntityInfo blockEntityInfo)
extends Record
-
Field Summary
Modifier and TypeFieldDescriptionprivate final CloneCommands.CloneBlockEntityInfo
The field for theblockEntityInfo
record component.private final BlockPos
The field for thepos
record component.private final BlockState
The field for thestate
record component. -
Constructor Summary
ConstructorDescriptionCloneBlockInfo
(BlockPos pos, BlockState state, CloneCommands.CloneBlockEntityInfo blockEntityInfo) Creates an instance of aCloneBlockInfo
record class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theblockEntityInfo
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.pos()
Returns the value of thepos
record component.state()
Returns the value of thestate
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
pos
The field for thepos
record component. -
state
The field for thestate
record component. -
blockEntityInfo
The field for theblockEntityInfo
record component.
-
-
Constructor Details
-
CloneBlockInfo
CloneBlockInfo(BlockPos pos, BlockState state, @Nullable CloneCommands.CloneBlockEntityInfo blockEntityInfo) Creates an instance of aCloneBlockInfo
record class.- Parameters:
pos
- the value for thepos
record componentstate
- the value for thestate
record componentblockEntityInfo
- the value for theblockEntityInfo
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 withObjects::equals(Object,Object)
. -
pos
Returns the value of thepos
record component.- Returns:
- the value of the
pos
record component
-
state
Returns the value of thestate
record component.- Returns:
- the value of the
state
record component
-
blockEntityInfo
Returns the value of theblockEntityInfo
record component.- Returns:
- the value of the
blockEntityInfo
record component
-