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 SummaryFields
- 
Constructor SummaryConstructorsConstructorDescriptionTeleportTarget(ResourceKey<Level> level, Vec3 pos, Vec2 rot) Creates an instance of aTeleportTargetrecord class.
- 
Method SummaryModifier 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- 
levelThe field for thelevelrecord component.
- 
posThe field for theposrecord component.
- 
rotThe field for therotrecord component.
 
- 
- 
Constructor Details- 
TeleportTargetTeleportTarget(ResourceKey<Level> level, Vec3 pos, Vec2 rot) Creates an instance of aTeleportTargetrecord class.- Parameters:
- level- the value for the- levelrecord component
- pos- the value for the- posrecord component
- rot- the value for the- rotrecord component
 
 
- 
- 
Method Details- 
toStringReturns 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.
- 
hashCodepublic 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.
- 
equalsIndicates 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).
- 
levelReturns the value of thelevelrecord component.- Returns:
- the value of the levelrecord component
 
- 
posReturns the value of theposrecord component.- Returns:
- the value of the posrecord component
 
- 
rotReturns the value of therotrecord component.- Returns:
- the value of the rotrecord component
 
 
-