Package net.minecraft.server.chase
Record Class ChaseClient.TeleportTarget
java.lang.Object
java.lang.Record
net.minecraft.server.chase.ChaseClient.TeleportTarget
- Enclosing class:
- ChaseClient
static record ChaseClient.TeleportTarget(ResourceKey<Level> level, Vec3 pos, Vec2 rot)
extends Record
-
Field Summary
-
Constructor Summary
ConstructorDescriptionTeleportTarget
(ResourceKey<Level> level, Vec3 pos, Vec2 rot) Creates an instance of aTeleportTarget
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.level()
Returns the value of thelevel
record component.pos()
Returns the value of thepos
record component.rot()
Returns the value of therot
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
level
The field for thelevel
record component. -
pos
The field for thepos
record component. -
rot
The field for therot
record component.
-
-
Constructor Details
-
TeleportTarget
TeleportTarget(ResourceKey<Level> level, Vec3 pos, Vec2 rot) Creates an instance of aTeleportTarget
record class.- Parameters:
level
- the value for thelevel
record componentpos
- the value for thepos
record componentrot
- the value for therot
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)
. -
level
Returns the value of thelevel
record component.- Returns:
- the value of the
level
record component
-
pos
Returns the value of thepos
record component.- Returns:
- the value of the
pos
record component
-
rot
Returns the value of therot
record component.- Returns:
- the value of the
rot
record component
-