Record Class ScoreLootNumberProvider
java.lang.Object
java.lang.Record
net.minecraft.loot.provider.number.ScoreLootNumberProvider
- Record Components:
- target-
- score-
- scale-
- All Implemented Interfaces:
- LootContextAware,- LootNumberProvider
public record ScoreLootNumberProvider(LootScoreProvider target, String score, float scale)
extends Record
implements LootNumberProvider
- Mappings:
- Namespace - Name - named - net/minecraft/loot/provider/number/ScoreLootNumberProvider- intermediary - net/minecraft/class_5660- official - ezz- named - target- intermediary - comp_1897- official - b- named - score- intermediary - comp_1898- official - c- named - scale- intermediary - comp_1899- official - d
- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final com.mojang.serialization.MapCodec<ScoreLootNumberProvider> private final floatThe field for thescalerecord component.private final StringThe field for thescorerecord component.private final LootScoreProviderThe field for thetargetrecord component.
- 
Constructor SummaryConstructorsConstructorDescriptionScoreLootNumberProvider(LootScoreProvider target, String score, float scale) Creates an instance of aScoreLootNumberProviderrecord class.
- 
Method SummaryModifier and TypeMethodDescriptionstatic ScoreLootNumberProvidercreate(LootContext.EntityTarget target, String score) static ScoreLootNumberProvidercreate(LootContext.EntityTarget target, String score, float scale) final booleanIndicates whether some other object is "equal to" this one.Set<ContextParameter<?>> getType()final inthashCode()Returns a hash code value for this object.floatnextFloat(LootContext context) floatscale()Returns the value of thescalerecord component.score()Returns the value of thescorerecord component.target()Returns the value of thetargetrecord component.final StringtoString()Returns a string representation of this record class.Methods inherited from class java.lang.Objectclone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface net.minecraft.loot.context.LootContextAwarevalidateMethods inherited from interface net.minecraft.loot.provider.number.LootNumberProvidernextInt
- 
Field Details- 
targetThe field for thetargetrecord component.
- 
scoreThe field for thescorerecord component.
- 
scaleprivate final float scaleThe field for thescalerecord component.
- 
CODEC- Mappings:
- Namespace - Name - Mixin selector - named - CODEC- Lnet/minecraft/loot/provider/number/ScoreLootNumberProvider;CODEC:Lcom/mojang/serialization/MapCodec;- intermediary - field_45890- Lnet/minecraft/class_5660;field_45890:Lcom/mojang/serialization/MapCodec;- official - a- Lezz;a:Lcom/mojang/serialization/MapCodec;
 
 
- 
- 
Constructor Details
- 
Method Details- 
getType- Specified by:
- getTypein interface- LootNumberProvider
- Mappings:
- Namespace - Name - Mixin selector - named - getType- Lnet/minecraft/loot/provider/number/LootNumberProvider;getType()Lnet/minecraft/loot/provider/number/LootNumberProviderType;- intermediary - method_365- Lnet/minecraft/class_5658;method_365()Lnet/minecraft/class_5657;- official - b- Lezx;b()Lezw;
 
- 
getAllowedParameters- Specified by:
- getAllowedParametersin interface- LootContextAware
- Mappings:
- Namespace - Name - Mixin selector - named - getAllowedParameters- Lnet/minecraft/loot/context/LootContextAware;getAllowedParameters()Ljava/util/Set;- intermediary - method_293- Lnet/minecraft/class_46;method_293()Ljava/util/Set;- official - a- Levt;a()Ljava/util/Set;
 
- 
create- Mappings:
- Namespace - Name - Mixin selector - named - create- Lnet/minecraft/loot/provider/number/ScoreLootNumberProvider;create(Lnet/minecraft/loot/context/LootContext$EntityTarget;Ljava/lang/String;)Lnet/minecraft/loot/provider/number/ScoreLootNumberProvider;- intermediary - method_35569- Lnet/minecraft/class_5660;method_35569(Lnet/minecraft/class_47$class_50;Ljava/lang/String;)Lnet/minecraft/class_5660;- official - a- Lezz;a(Levs$b;Ljava/lang/String;)Lezz;
 
- 
createpublic static ScoreLootNumberProvider create(LootContext.EntityTarget target, String score, float scale) - Mappings:
- Namespace - Name - Mixin selector - named - create- Lnet/minecraft/loot/provider/number/ScoreLootNumberProvider;create(Lnet/minecraft/loot/context/LootContext$EntityTarget;Ljava/lang/String;F)Lnet/minecraft/loot/provider/number/ScoreLootNumberProvider;- intermediary - method_35570- Lnet/minecraft/class_5660;method_35570(Lnet/minecraft/class_47$class_50;Ljava/lang/String;F)Lnet/minecraft/class_5660;- official - a- Lezz;a(Levs$b;Ljava/lang/String;F)Lezz;
 
- 
nextFloat- Specified by:
- nextFloatin interface- LootNumberProvider
- Mappings:
- Namespace - Name - Mixin selector - named - nextFloat- Lnet/minecraft/loot/provider/number/LootNumberProvider;nextFloat(Lnet/minecraft/loot/context/LootContext;)F- intermediary - method_32454- Lnet/minecraft/class_5658;method_32454(Lnet/minecraft/class_47;)F- official - b- Lezx;b(Levs;)F
 
- 
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 '=='.
- 
targetReturns the value of thetargetrecord component.- Returns:
- the value of the targetrecord component
 
- 
scoreReturns the value of thescorerecord component.- Returns:
- the value of the scorerecord component
 
- 
scalepublic float scale()Returns the value of thescalerecord component.- Returns:
- the value of the scalerecord component
 
 
-