Package net.minecraft.loot.condition
Record Class ValueCheckLootCondition
java.lang.Object
java.lang.Record
net.minecraft.loot.condition.ValueCheckLootCondition
- Record Components:
value-range-
- All Implemented Interfaces:
Predicate<LootContext>,LootCondition,LootContextAware
public record ValueCheckLootCondition(LootNumberProvider value, BoundedIntUnaryOperator range)
extends Record
implements LootCondition
- Mappings:
Namespace Name official ekeintermediary net/minecraft/class_5644named net/minecraft/loot/condition/ValueCheckLootConditionofficial bintermediary comp_1887named valueofficial cintermediary comp_1888named range
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.minecraft.loot.condition.LootCondition
LootCondition.Builder -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<ValueCheckLootCondition>private final BoundedIntUnaryOperatorThe field for therangerecord component.private final LootNumberProviderThe field for thevaluerecord component. -
Constructor Summary
ConstructorsConstructorDescriptionValueCheckLootCondition(LootNumberProvider value, BoundedIntUnaryOperator range) Creates an instance of aValueCheckLootConditionrecord class. -
Method Summary
Modifier and TypeMethodDescriptionstatic LootCondition.Builderbuilder(LootNumberProvider value, BoundedIntUnaryOperator range) final booleanIndicates whether some other object is "equal to" this one.getType()final inthashCode()Returns a hash code value for this object.range()Returns the value of therangerecord component.booleantest(LootContext lootContext) final StringtoString()Returns a string representation of this record class.value()Returns the value of thevaluerecord component.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface net.minecraft.loot.context.LootContextAware
validate
-
Field Details
-
value
The field for thevaluerecord component. -
range
The field for therangerecord component. -
CODEC
- Mappings:
Namespace Name Mixin selector official aLeke;a:Lcom/mojang/serialization/Codec;intermediary field_45877Lnet/minecraft/class_5644;field_45877:Lcom/mojang/serialization/Codec;named CODECLnet/minecraft/loot/condition/ValueCheckLootCondition;CODEC:Lcom/mojang/serialization/Codec;
-
-
Constructor Details
-
Method Details
-
getType
- Specified by:
getTypein interfaceLootCondition- Mappings:
Namespace Name Mixin selector official bLejv;b()Lejw;intermediary method_29325Lnet/minecraft/class_5341;method_29325()Lnet/minecraft/class_5342;named getTypeLnet/minecraft/loot/condition/LootCondition;getType()Lnet/minecraft/loot/condition/LootConditionType;
-
getRequiredParameters
- Specified by:
getRequiredParametersin interfaceLootContextAware- Mappings:
Namespace Name Mixin selector official aLegx;a()Ljava/util/Set;intermediary method_293Lnet/minecraft/class_46;method_293()Ljava/util/Set;named getRequiredParametersLnet/minecraft/loot/context/LootContextAware;getRequiredParameters()Ljava/util/Set;
-
test
- Specified by:
testin interfacePredicate<LootContext>- Mappings:
Namespace Name Mixin selector official aLeke;a(Legw;)Zintermediary method_32423Lnet/minecraft/class_5644;method_32423(Lnet/minecraft/class_47;)Znamed testLnet/minecraft/loot/condition/ValueCheckLootCondition;test(Lnet/minecraft/loot/context/LootContext;)Z
-
builder
public static LootCondition.Builder builder(LootNumberProvider value, BoundedIntUnaryOperator range) - Mappings:
Namespace Name Mixin selector official aLeke;a(Lekq;Legv;)Lejv$a;intermediary method_35562Lnet/minecraft/class_5644;method_35562(Lnet/minecraft/class_5658;Lnet/minecraft/class_42;)Lnet/minecraft/class_5341$class_210;named builderLnet/minecraft/loot/condition/ValueCheckLootCondition;builder(Lnet/minecraft/loot/provider/number/LootNumberProvider;Lnet/minecraft/loot/operator/BoundedIntUnaryOperator;)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). -
value
Returns the value of thevaluerecord component.- Returns:
- the value of the
valuerecord component
-
range
Returns the value of therangerecord component.- Returns:
- the value of the
rangerecord component
-