Record Class ClientboundSetSimulationDistancePacket
java.lang.Object
java.lang.Record
net.minecraft.network.protocol.game.ClientboundSetSimulationDistancePacket
- All Implemented Interfaces:
Packet<ClientGamePacketListener>
public record ClientboundSetSimulationDistancePacket(int simulationDistance)
extends Record
implements Packet<ClientGamePacketListener>
-
Field Summary
Modifier and TypeFieldDescriptionprivate final int
The field for thesimulationDistance
record component. -
Constructor Summary
ConstructorDescriptionClientboundSetSimulationDistancePacket
(int simulationDistance) Creates an instance of aClientboundSetSimulationDistancePacket
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.void
handle
(ClientGamePacketListener p_195806_) final int
hashCode()
Returns a hash code value for this object.int
Returns the value of thesimulationDistance
record component.final String
toString()
Returns a string representation of this record class.void
write
(FriendlyByteBuf p_195802_) Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface net.minecraft.network.protocol.Packet
isSkippable
-
Field Details
-
simulationDistance
private final int simulationDistanceThe field for thesimulationDistance
record component.
-
-
Constructor Details
-
ClientboundSetSimulationDistancePacket
-
ClientboundSetSimulationDistancePacket
public ClientboundSetSimulationDistancePacket(int simulationDistance) Creates an instance of aClientboundSetSimulationDistancePacket
record class.- Parameters:
simulationDistance
- the value for thesimulationDistance
record component
-
-
Method Details
-
write
- Specified by:
write
in interfacePacket<ClientGamePacketListener>
-
handle
- Specified by:
handle
in interfacePacket<ClientGamePacketListener>
-
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 '=='. -
simulationDistance
public int simulationDistance()Returns the value of thesimulationDistance
record component.- Returns:
- the value of the
simulationDistance
record component
-