Package net.minecraft.world.food
Record Class FoodProperties.PossibleEffect
java.lang.Object
java.lang.Record
net.minecraft.world.food.FoodProperties.PossibleEffect
- Enclosing class:
FoodProperties
public static record FoodProperties.PossibleEffect(Supplier<MobEffectInstance> effectSupplier, float probability)
extends Record
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<FoodProperties.PossibleEffect> private final Supplier<MobEffectInstance> The field for theeffectSupplierrecord component.private final floatThe field for theprobabilityrecord component.static final StreamCodec<RegistryFriendlyByteBuf, FoodProperties.PossibleEffect> -
Constructor Summary
ConstructorsModifierConstructorDescriptionPossibleEffect(Supplier<MobEffectInstance> effectSupplier, float probability) Creates an instance of aPossibleEffectrecord class.privatePossibleEffect(MobEffectInstance effect, float probability) -
Method Summary
Modifier and TypeMethodDescriptioneffect()Returns the value of theeffectSupplierrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.floatReturns the value of theprobabilityrecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
effectSupplier
The field for theeffectSupplierrecord component. -
probability
private final float probabilityThe field for theprobabilityrecord component. -
CODEC
-
STREAM_CODEC
-
-
Constructor Details
-
PossibleEffect
-
PossibleEffect
Creates an instance of aPossibleEffectrecord class.- Parameters:
effectSupplier- the value for theeffectSupplierrecord componentprobability- the value for theprobabilityrecord component
-
-
Method Details
-
effect
-
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 '=='. -
effectSupplier
Returns the value of theeffectSupplierrecord component.- Returns:
- the value of the
effectSupplierrecord component
-
probability
public float probability()Returns the value of theprobabilityrecord component.- Returns:
- the value of the
probabilityrecord component
-