Package net.minecraft.loot.condition
Record Class TableBonusLootCondition
java.lang.Object
java.lang.Record
net.minecraft.loot.condition.TableBonusLootCondition
- Record Components:
- enchantment-
- chances-
- All Implemented Interfaces:
- Predicate<LootContext>,- LootCondition,- LootContextAware
public record TableBonusLootCondition(RegistryEntry<Enchantment> enchantment, List<Float> chances)
extends Record
implements LootCondition
- Mappings:
- Namespace - Name - named - net/minecraft/loot/condition/TableBonusLootCondition- intermediary - net/minecraft/class_182- official - eyq- named - enchantment- intermediary - comp_1867- official - b- named - chances- intermediary - comp_1868- official - c
- 
Nested Class SummaryNested classes/interfaces inherited from interface net.minecraft.loot.condition.LootConditionLootCondition.Builder
- 
Field SummaryFieldsModifier and TypeFieldDescriptionThe field for thechancesrecord component.static final com.mojang.serialization.MapCodec<TableBonusLootCondition> private final RegistryEntry<Enchantment> The field for theenchantmentrecord component.Fields inherited from interface net.minecraft.loot.condition.LootConditionBASE_CODEC, ENTRY_CODEC
- 
Constructor SummaryConstructorsConstructorDescriptionTableBonusLootCondition(RegistryEntry<Enchantment> registryEntry, List<Float> list) 
- 
Method SummaryModifier and TypeMethodDescriptionstatic LootCondition.Builderbuilder(RegistryEntry<Enchantment> enchantment, float[] chances) chances()Returns the value of thechancesrecord component.Returns the value of theenchantmentrecord component.final booleanIndicates whether some other object is "equal to" this one.Set<ContextParameter<?>> getType()final inthashCode()Returns a hash code value for this object.booleantest(LootContext lootContext) 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.LootContextAwarevalidate
- 
Field Details- 
enchantmentThe field for theenchantmentrecord component.
- 
chancesThe field for thechancesrecord component.
- 
CODEC- Mappings:
- Namespace - Name - Mixin selector - named - CODEC- Lnet/minecraft/loot/condition/TableBonusLootCondition;CODEC:Lcom/mojang/serialization/MapCodec;- intermediary - field_45860- Lnet/minecraft/class_182;field_45860:Lcom/mojang/serialization/MapCodec;- official - a- Leyq;a:Lcom/mojang/serialization/MapCodec;
 
 
- 
- 
Constructor Details- 
TableBonusLootCondition
 
- 
- 
Method Details- 
getType- Specified by:
- getTypein interface- LootCondition
- Mappings:
- Namespace - Name - Mixin selector - named - getType- Lnet/minecraft/loot/condition/LootCondition;getType()Lnet/minecraft/loot/condition/LootConditionType;- intermediary - method_29325- Lnet/minecraft/class_5341;method_29325()Lnet/minecraft/class_5342;- official - b- Lezb;b()Lezc;
 
- 
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;
 
- 
test- Specified by:
- testin interface- Predicate<LootContext>
- Mappings:
- Namespace - Name - Mixin selector - named - test- Lnet/minecraft/loot/condition/TableBonusLootCondition;test(Lnet/minecraft/loot/context/LootContext;)Z- intermediary - method_799- Lnet/minecraft/class_182;method_799(Lnet/minecraft/class_47;)Z- official - a- Leyq;a(Levs;)Z
 
- 
builderpublic static LootCondition.Builder builder(RegistryEntry<Enchantment> enchantment, float[] chances) - Mappings:
- Namespace - Name - Mixin selector - named - builder- Lnet/minecraft/loot/condition/TableBonusLootCondition;builder(Lnet/minecraft/registry/entry/RegistryEntry;[F)Lnet/minecraft/loot/condition/LootCondition$Builder;- intermediary - method_800- Lnet/minecraft/class_182;method_800(Lnet/minecraft/class_6880;[F)Lnet/minecraft/class_5341$class_210;- official - a- Leyq;a(Ljr;[F)Lezb$a;
 
- 
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 withObjects::equals(Object,Object).
- 
enchantmentReturns the value of theenchantmentrecord component.- Returns:
- the value of the enchantmentrecord component
 
- 
chancesReturns the value of thechancesrecord component.- Returns:
- the value of the chancesrecord component
 
 
-