Package net.minecraft.server.level
Record Class ServerPlayer.RespawnPosAngle
java.lang.Object
java.lang.Record
net.minecraft.server.level.ServerPlayer.RespawnPosAngle
- Enclosing class:
ServerPlayer
-
Field Summary
-
Constructor Summary
ConstructorDescriptionRespawnPosAngle
(Vec3 position, float yaw) Creates an instance of aRespawnPosAngle
record class. -
Method Summary
Modifier and TypeMethodDescriptionprivate static float
calculateLookAtYaw
(Vec3 p_344384_, BlockPos p_344719_) final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.static ServerPlayer.RespawnPosAngle
position()
Returns the value of theposition
record component.final String
toString()
Returns a string representation of this record class.float
yaw()
Returns the value of theyaw
record component.
-
Field Details
-
position
The field for theposition
record component. -
yaw
private final float yawThe field for theyaw
record component.
-
-
Constructor Details
-
RespawnPosAngle
RespawnPosAngle(Vec3 position, float yaw) Creates an instance of aRespawnPosAngle
record class.- Parameters:
position
- the value for theposition
record componentyaw
- the value for theyaw
record component
-
-
Method Details
-
of
-
calculateLookAtYaw
-
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. Reference components are compared withObjects::equals(Object,Object)
; primitive components are compared with '=='. -
position
Returns the value of theposition
record component.- Returns:
- the value of the
position
record component
-
yaw
public float yaw()Returns the value of theyaw
record component.- Returns:
- the value of the
yaw
record component
-