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
Fields -
Constructor Summary
ConstructorsConstructorDescriptionTeleportTarget(ResourceKey<Level> level, Vec3 pos, Vec2 rot) Creates an instance of aTeleportTargetrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.level()Returns the value of thelevelrecord component.pos()Returns the value of theposrecord component.rot()Returns the value of therotrecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
level
The field for thelevelrecord component. -
pos
The field for theposrecord component. -
rot
The field for therotrecord component.
-
-
Constructor Details
-
TeleportTarget
TeleportTarget(ResourceKey<Level> level, Vec3 pos, Vec2 rot) Creates an instance of aTeleportTargetrecord class.- Parameters:
level- the value for thelevelrecord componentpos- the value for theposrecord componentrot- the value for therotrecord 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 thelevelrecord component.- Returns:
- the value of the
levelrecord component
-
pos
Returns the value of theposrecord component.- Returns:
- the value of the
posrecord component
-
rot
Returns the value of therotrecord component.- Returns:
- the value of the
rotrecord component
-