Package net.minecraft.component.type
Record Class SuspiciousStewEffectsComponent.StewEffect
java.lang.Object
java.lang.Record
net.minecraft.component.type.SuspiciousStewEffectsComponent.StewEffect
- Record Components:
- effect-
- duration-
- Enclosing class:
- SuspiciousStewEffectsComponent
public static record SuspiciousStewEffectsComponent.StewEffect(RegistryEntry<StatusEffect> effect, int duration)
extends Record
- Mappings:
- Namespace - Name - named - net/minecraft/component/type/SuspiciousStewEffectsComponent$StewEffect- intermediary - net/minecraft/class_9298$class_8751- official - czr$a- named - effect- intermediary - comp_1838- official - c- named - duration- intermediary - comp_1839- official - d
- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<SuspiciousStewEffectsComponent.StewEffect> private final intThe field for thedurationrecord component.private final RegistryEntry<StatusEffect> The field for theeffectrecord component.
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionintduration()Returns the value of thedurationrecord component.effect()Returns the value of theeffectrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.
- 
Field Details- 
effectThe field for theeffectrecord component.
- 
durationprivate final int durationThe field for thedurationrecord component.
- 
CODEC- Mappings:
- Namespace - Name - Mixin selector - named - CODEC- Lnet/minecraft/component/type/SuspiciousStewEffectsComponent$StewEffect;CODEC:Lcom/mojang/serialization/Codec;- intermediary - field_45782- Lnet/minecraft/class_9298$class_8751;field_45782:Lcom/mojang/serialization/Codec;- official - a- Lczr$a;a:Lcom/mojang/serialization/Codec;
 
- 
PACKET_CODECpublic static final PacketCodec<RegistryByteBuf,SuspiciousStewEffectsComponent.StewEffect> PACKET_CODEC- Mappings:
- Namespace - Name - Mixin selector - named - PACKET_CODEC- Lnet/minecraft/component/type/SuspiciousStewEffectsComponent$StewEffect;PACKET_CODEC:Lnet/minecraft/network/codec/PacketCodec;- intermediary - field_49365- Lnet/minecraft/class_9298$class_8751;field_49365:Lnet/minecraft/class_9139;- official - b- Lczr$a;b:Lyn;
 
 
- 
- 
Constructor Details- 
StewEffect
 
- 
- 
Method Details- 
createStatusEffectInstance- Mappings:
- Namespace - Name - Mixin selector - named - createStatusEffectInstance- Lnet/minecraft/component/type/SuspiciousStewEffectsComponent$StewEffect;createStatusEffectInstance()Lnet/minecraft/entity/effect/StatusEffectInstance;- intermediary - method_53247- Lnet/minecraft/class_9298$class_8751;method_53247()Lnet/minecraft/class_1293;- official - a- Lczr$a;a()Lbtr;
 
- 
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='.
- 
effectReturns the value of theeffectrecord component.- Returns:
- the value of the effectrecord component
 
- 
durationpublic int duration()Returns the value of thedurationrecord component.- Returns:
- the value of the durationrecord component
 
 
-