Record Class SummonEntityEnchantmentEffect
java.lang.Object
java.lang.Record
net.minecraft.enchantment.effect.entity.SummonEntityEnchantmentEffect
- Record Components:
entityTypes
-joinTeam
-
- All Implemented Interfaces:
EnchantmentEntityEffect
,EnchantmentLocationBasedEffect
public record SummonEntityEnchantmentEffect(RegistryEntryList<EntityType<?>> entityTypes, boolean joinTeam)
extends Record
implements EnchantmentEntityEffect
- Mappings:
Namespace Name named net/minecraft/enchantment/effect/entity/SummonEntityEnchantmentEffect
intermediary net/minecraft/class_9739
official dbg
named entityTypes
intermediary comp_2762
official d
named joinTeam
intermediary comp_2763
official e
-
Field Summary
Modifier and TypeFieldDescriptionstatic final com.mojang.serialization.MapCodec
<SummonEntityEnchantmentEffect> private final RegistryEntryList
<EntityType<?>> The field for theentityTypes
record component.private final boolean
The field for thejoinTeam
record component. -
Constructor Summary
ConstructorDescriptionSummonEntityEnchantmentEffect
(RegistryEntryList<EntityType<?>> registryEntryList, boolean bool) -
Method Summary
Modifier and TypeMethodDescriptionvoid
apply
(ServerWorld world, int level, EnchantmentEffectContext context, Entity user, Vec3d pos) Returns the value of theentityTypes
record component.final boolean
Indicates whether some other object is "equal to" this one.com.mojang.serialization.MapCodec
<SummonEntityEnchantmentEffect> getCodec()
final int
hashCode()
Returns a hash code value for this object.boolean
joinTeam()
Returns the value of thejoinTeam
record component.final String
toString()
Returns a string representation of this record class.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface net.minecraft.enchantment.effect.EnchantmentEntityEffect
apply
Methods inherited from interface net.minecraft.enchantment.effect.EnchantmentLocationBasedEffect
remove
-
Field Details
-
entityTypes
The field for theentityTypes
record component. -
joinTeam
private final boolean joinTeamThe field for thejoinTeam
record component. -
CODEC
- Mappings:
Namespace Name Mixin selector named CODEC
Lnet/minecraft/enchantment/effect/entity/SummonEntityEnchantmentEffect;CODEC:Lcom/mojang/serialization/MapCodec;
intermediary field_51730
Lnet/minecraft/class_9739;field_51730:Lcom/mojang/serialization/MapCodec;
official a
Ldbg;a:Lcom/mojang/serialization/MapCodec;
-
-
Constructor Details
-
SummonEntityEnchantmentEffect
public SummonEntityEnchantmentEffect(RegistryEntryList<EntityType<?>> registryEntryList, boolean bool)
-
-
Method Details
-
apply
public void apply(ServerWorld world, int level, EnchantmentEffectContext context, Entity user, Vec3d pos) - Specified by:
apply
in interfaceEnchantmentEntityEffect
- Mappings:
Namespace Name Mixin selector named apply
Lnet/minecraft/enchantment/effect/EnchantmentEntityEffect;apply(Lnet/minecraft/server/world/ServerWorld;ILnet/minecraft/enchantment/EnchantmentEffectContext;Lnet/minecraft/entity/Entity;Lnet/minecraft/util/math/Vec3d;)V
intermediary method_60220
Lnet/minecraft/class_9721;method_60220(Lnet/minecraft/class_3218;ILnet/minecraft/class_9699;Lnet/minecraft/class_1297;Lnet/minecraft/class_243;)V
official a
Ldas;a(Laqu;ILdab;Lbsr;Lexc;)V
-
getCodec
- Specified by:
getCodec
in interfaceEnchantmentEntityEffect
- Specified by:
getCodec
in interfaceEnchantmentLocationBasedEffect
- Mappings:
Namespace Name Mixin selector named getCodec
Lnet/minecraft/enchantment/effect/EnchantmentLocationBasedEffect;getCodec()Lcom/mojang/serialization/MapCodec;
intermediary method_60219
Lnet/minecraft/class_9722;method_60219()Lcom/mojang/serialization/MapCodec;
official a
Ldat;a()Lcom/mojang/serialization/MapCodec;
-
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. Reference components are compared withObjects::equals(Object,Object)
; primitive components are compared with '=='. -
entityTypes
Returns the value of theentityTypes
record component.- Returns:
- the value of the
entityTypes
record component
-
joinTeam
public boolean joinTeam()Returns the value of thejoinTeam
record component.- Returns:
- the value of the
joinTeam
record component
-