Package net.minecraft.server.command
Record Class LookTarget.LookAtEntity
java.lang.Object
java.lang.Record
net.minecraft.server.command.LookTarget.LookAtEntity
- Record Components:
entity-anchor-
- All Implemented Interfaces:
LookTarget
- Enclosing interface:
LookTarget
public static record LookTarget.LookAtEntity(Entity entity, EntityAnchorArgumentType.EntityAnchor anchor)
extends Record
implements LookTarget
- Mappings:
Namespace Name named net/minecraft/server/command/LookTarget$LookAtEntityintermediary net/minecraft/class_3144$class_9251official aol$anamed entityintermediary comp_2357official anamed anchorintermediary comp_2358official b
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.minecraft.server.command.LookTarget
LookTarget.LookAtEntity, LookTarget.LookAtPosition -
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionLookAtEntity(Entity entity, EntityAnchorArgumentType.EntityAnchor entityAnchor) -
Method Summary
Modifier and TypeMethodDescriptionanchor()Returns the value of theanchorrecord component.entity()Returns the value of theentityrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.voidlook(ServerCommandSource source, Entity entity) final StringtoString()Returns a string representation of this record class.
-
Field Details
-
Constructor Details
-
LookAtEntity
-
-
Method Details
-
look
- Specified by:
lookin interfaceLookTarget- Mappings:
Namespace Name Mixin selector named lookLnet/minecraft/server/command/LookTarget;look(Lnet/minecraft/server/command/ServerCommandSource;Lnet/minecraft/entity/Entity;)Vintermediary method_13772Lnet/minecraft/class_3144;method_13772(Lnet/minecraft/class_2168;Lnet/minecraft/class_1297;)Vofficial performLaol;perform(Lek;Lbxe;)V
-
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). -
entity
Returns the value of theentityrecord component.- Returns:
- the value of the
entityrecord component
-
anchor
Returns the value of theanchorrecord component.- Returns:
- the value of the
anchorrecord component
-