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 official ejl
intermediary net/minecraft/class_182
named net/minecraft/loot/condition/TableBonusLootCondition
official b
intermediary comp_1867
named enchantment
official c
intermediary comp_1868
named chances
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.minecraft.loot.condition.LootCondition
LootCondition.Builder
-
Field Summary
Modifier and TypeFieldDescriptionThe field for thechances
record component.static final com.mojang.serialization.Codec<TableBonusLootCondition>
private final RegistryEntry<Enchantment>
The field for theenchantment
record component. -
Constructor Summary
ConstructorDescriptionTableBonusLootCondition
(RegistryEntry<Enchantment> registryEntry, List<Float> list) -
Method Summary
Modifier and TypeMethodDescriptionstatic LootCondition.Builder
builder
(Enchantment enchantment, float[] chances) chances()
Returns the value of thechances
record component.Returns the value of theenchantment
record component.final boolean
Indicates whether some other object is "equal to" this one.getType()
final int
hashCode()
Returns a hash code value for this object.boolean
test
(LootContext lootContext) final String
toString()
Returns a string representation of this record class.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface net.minecraft.loot.context.LootContextAware
validate
-
Field Details
-
enchantment
The field for theenchantment
record component. -
chances
The field for thechances
record component. -
CODEC
- Mappings:
Namespace Name Mixin selector official a
Lejl;a:Lcom/mojang/serialization/Codec;
intermediary field_45860
Lnet/minecraft/class_182;field_45860:Lcom/mojang/serialization/Codec;
named CODEC
Lnet/minecraft/loot/condition/TableBonusLootCondition;CODEC:Lcom/mojang/serialization/Codec;
-
-
Constructor Details
-
TableBonusLootCondition
-
-
Method Details
-
getType
- Specified by:
getType
in interfaceLootCondition
- Mappings:
Namespace Name Mixin selector official b
Lejv;b()Lejw;
intermediary method_29325
Lnet/minecraft/class_5341;method_29325()Lnet/minecraft/class_5342;
named getType
Lnet/minecraft/loot/condition/LootCondition;getType()Lnet/minecraft/loot/condition/LootConditionType;
-
getRequiredParameters
- Specified by:
getRequiredParameters
in interfaceLootContextAware
- Mappings:
Namespace Name Mixin selector official a
Legx;a()Ljava/util/Set;
intermediary method_293
Lnet/minecraft/class_46;method_293()Ljava/util/Set;
named getRequiredParameters
Lnet/minecraft/loot/context/LootContextAware;getRequiredParameters()Ljava/util/Set;
-
test
- Specified by:
test
in interfacePredicate<LootContext>
- Mappings:
Namespace Name Mixin selector official a
Lejl;a(Legw;)Z
intermediary method_799
Lnet/minecraft/class_182;method_799(Lnet/minecraft/class_47;)Z
named test
Lnet/minecraft/loot/condition/TableBonusLootCondition;test(Lnet/minecraft/loot/context/LootContext;)Z
-
builder
- Mappings:
Namespace Name Mixin selector official a
Lejl;a(Lcrj;[F)Lejv$a;
intermediary method_800
Lnet/minecraft/class_182;method_800(Lnet/minecraft/class_1887;[F)Lnet/minecraft/class_5341$class_210;
named builder
Lnet/minecraft/loot/condition/TableBonusLootCondition;builder(Lnet/minecraft/enchantment/Enchantment;[F)Lnet/minecraft/loot/condition/LootCondition$Builder;
-
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. All components in this record class are compared withObjects::equals(Object,Object)
. -
enchantment
Returns the value of theenchantment
record component.- Returns:
- the value of the
enchantment
record component
-
chances
Returns the value of thechances
record component.- Returns:
- the value of the
chances
record component
-