Package net.minecraft.loot.function
Record Class ApplyBonusLootFunction.UniformBonusCount
java.lang.Object
java.lang.Record
net.minecraft.loot.function.ApplyBonusLootFunction.UniformBonusCount
- Record Components:
- bonusMultiplier-
- All Implemented Interfaces:
- ApplyBonusLootFunction.Formula
- Enclosing class:
- ApplyBonusLootFunction
private static record ApplyBonusLootFunction.UniformBonusCount(int bonusMultiplier)
extends Record
implements ApplyBonusLootFunction.Formula
- Mappings:
- Namespace - Name - named - net/minecraft/loot/function/ApplyBonusLootFunction$UniformBonusCount- intermediary - net/minecraft/class_94$class_100- official - ewp$e- named - bonusMultiplier- intermediary - comp_1852- official - c
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprivate final intThe field for thebonusMultiplierrecord component.static final com.mojang.serialization.Codec<ApplyBonusLootFunction.UniformBonusCount> static final ApplyBonusLootFunction.Type
- 
Constructor SummaryConstructorsConstructorDescriptionUniformBonusCount(int bonusMultiplier) Creates an instance of aUniformBonusCountrecord class.
- 
Method SummaryModifier and TypeMethodDescriptionintReturns the value of thebonusMultiplierrecord component.final booleanIndicates whether some other object is "equal to" this one.getType()intfinal inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.
- 
Field Details- 
bonusMultiplierprivate final int bonusMultiplierThe field for thebonusMultiplierrecord component.
- 
CODEC- Mappings:
- Namespace - Name - Mixin selector - named - CODEC- Lnet/minecraft/loot/function/ApplyBonusLootFunction$UniformBonusCount;CODEC:Lcom/mojang/serialization/Codec;- intermediary - field_45813- Lnet/minecraft/class_94$class_100;field_45813:Lcom/mojang/serialization/Codec;- official - a- Lewp$e;a:Lcom/mojang/serialization/Codec;
 
- 
TYPE- Mappings:
- Namespace - Name - Mixin selector - named - TYPE- Lnet/minecraft/loot/function/ApplyBonusLootFunction$UniformBonusCount;TYPE:Lnet/minecraft/loot/function/ApplyBonusLootFunction$Type;- intermediary - field_45814- Lnet/minecraft/class_94$class_100;field_45814:Lnet/minecraft/class_94$class_8752;- official - b- Lewp$e;b:Lewp$c;
 
 
- 
- 
Constructor Details- 
UniformBonusCountUniformBonusCount(int bonusMultiplier) Creates an instance of aUniformBonusCountrecord class.- Parameters:
- bonusMultiplier- the value for the- bonusMultiplierrecord component
 
 
- 
- 
Method Details- 
getValue- Specified by:
- getValuein interface- ApplyBonusLootFunction.Formula
- Mappings:
- Namespace - Name - Mixin selector - named - getValue- Lnet/minecraft/loot/function/ApplyBonusLootFunction$Formula;getValue(Lnet/minecraft/util/math/random/Random;II)I- intermediary - method_467- Lnet/minecraft/class_94$class_96;method_467(Lnet/minecraft/class_5819;II)I- official - a- Lewp$b;a(Lazh;II)I
 
- 
getType- Specified by:
- getTypein interface- ApplyBonusLootFunction.Formula
- Mappings:
- Namespace - Name - Mixin selector - named - getType- Lnet/minecraft/loot/function/ApplyBonusLootFunction$Formula;getType()Lnet/minecraft/loot/function/ApplyBonusLootFunction$Type;- intermediary - method_466- Lnet/minecraft/class_94$class_96;method_466()Lnet/minecraft/class_94$class_8752;- official - a- Lewp$b;a()Lewp$c;
 
- 
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. All components in this record class are compared with '=='.
- 
bonusMultiplierpublic int bonusMultiplier()Returns the value of thebonusMultiplierrecord component.- Returns:
- the value of the bonusMultiplierrecord component
 
 
-