Package net.minecraft.world.event
Record Class GameEvent.Emitter
java.lang.Object
java.lang.Record
net.minecraft.world.event.GameEvent.Emitter
- Record Components:
sourceEntity
-affectedState
-
- Enclosing class:
GameEvent
public static record GameEvent.Emitter(@Nullable Entity sourceEntity, @Nullable BlockState affectedState)
extends Record
- Mappings:
Namespace Name official ddc$a
intermediary net/minecraft/class_5712$class_7397
named net/minecraft/world/event/GameEvent$Emitter
official a
intermediary comp_713
named sourceEntity
official b
intermediary comp_714
named affectedState
-
Field Summary
Modifier and TypeFieldDescriptionprivate final @Nullable BlockState
The field for theaffectedState
record component.The field for thesourceEntity
record component. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theaffectedState
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.static GameEvent.Emitter
of
(@Nullable BlockState affectedState) static GameEvent.Emitter
static GameEvent.Emitter
of
(@Nullable Entity sourceEntity, @Nullable BlockState affectedState) Returns the value of thesourceEntity
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
sourceEntity
The field for thesourceEntity
record component. -
affectedState
The field for theaffectedState
record component.
-
-
Constructor Details
-
Emitter
-
-
Method Details
-
of
- Mappings:
Namespace Name Mixin selector official a
Lddc$a;a(Lbdr;)Lddc$a;
intermediary method_43285
Lnet/minecraft/class_5712$class_7397;method_43285(Lnet/minecraft/class_1297;)Lnet/minecraft/class_5712$class_7397;
named of
Lnet/minecraft/world/event/GameEvent$Emitter;of(Lnet/minecraft/entity/Entity;)Lnet/minecraft/world/event/GameEvent$Emitter;
-
of
- Mappings:
Namespace Name Mixin selector official a
Lddc$a;a(Lcyt;)Lddc$a;
intermediary method_43287
Lnet/minecraft/class_5712$class_7397;method_43287(Lnet/minecraft/class_2680;)Lnet/minecraft/class_5712$class_7397;
named of
Lnet/minecraft/world/event/GameEvent$Emitter;of(Lnet/minecraft/block/BlockState;)Lnet/minecraft/world/event/GameEvent$Emitter;
-
of
public static GameEvent.Emitter of(@Nullable @Nullable Entity sourceEntity, @Nullable @Nullable BlockState affectedState) - Mappings:
Namespace Name Mixin selector official a
Lddc$a;a(Lbdr;Lcyt;)Lddc$a;
intermediary method_43286
Lnet/minecraft/class_5712$class_7397;method_43286(Lnet/minecraft/class_1297;Lnet/minecraft/class_2680;)Lnet/minecraft/class_5712$class_7397;
named of
Lnet/minecraft/world/event/GameEvent$Emitter;of(Lnet/minecraft/entity/Entity;Lnet/minecraft/block/BlockState;)Lnet/minecraft/world/event/GameEvent$Emitter;
-
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)
. -
sourceEntity
Returns the value of thesourceEntity
record component.- Returns:
- the value of the
sourceEntity
record component
-
affectedState
Returns the value of theaffectedState
record component.- Returns:
- the value of the
affectedState
record component
-