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 named net/minecraft/loot/condition/ValueCheckLootCondition
intermediary net/minecraft/class_5644
official eud
named value
intermediary comp_1887
official b
named range
intermediary comp_1888
official c
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.minecraft.loot.condition.LootCondition
LootCondition.Builder
-
Field Summary
Modifier and TypeFieldDescriptionstatic final com.mojang.serialization.MapCodec
<ValueCheckLootCondition> private final BoundedIntUnaryOperator
The field for therange
record component.private final LootNumberProvider
The field for thevalue
record component. -
Constructor Summary
ConstructorDescriptionValueCheckLootCondition
(LootNumberProvider value, BoundedIntUnaryOperator range) Creates an instance of aValueCheckLootCondition
record class. -
Method Summary
Modifier and TypeMethodDescriptionstatic LootCondition.Builder
builder
(LootNumberProvider value, BoundedIntUnaryOperator range) final boolean
Indicates whether some other object is "equal to" this one.getType()
final int
hashCode()
Returns a hash code value for this object.range()
Returns the value of therange
record component.boolean
test
(LootContext lootContext) final String
toString()
Returns a string representation of this record class.value()
Returns the value of thevalue
record component.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
-
value
The field for thevalue
record component. -
range
The field for therange
record component. -
CODEC
- Mappings:
Namespace Name Mixin selector named CODEC
Lnet/minecraft/loot/condition/ValueCheckLootCondition;CODEC:Lcom/mojang/serialization/MapCodec;
intermediary field_45877
Lnet/minecraft/class_5644;field_45877:Lcom/mojang/serialization/MapCodec;
official a
Leud;a:Lcom/mojang/serialization/MapCodec;
-
-
Constructor Details
-
Method Details
-
getType
- Specified by:
getType
in interfaceLootCondition
- 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
Letu;b()Letv;
-
getRequiredParameters
- Specified by:
getRequiredParameters
in interfaceLootContextAware
- Mappings:
Namespace Name Mixin selector named getRequiredParameters
Lnet/minecraft/loot/context/LootContextAware;getRequiredParameters()Ljava/util/Set;
intermediary method_293
Lnet/minecraft/class_46;method_293()Ljava/util/Set;
official a
Leql;a()Ljava/util/Set;
-
test
- Specified by:
test
in interfacePredicate<LootContext>
- Mappings:
Namespace Name Mixin selector named test
Lnet/minecraft/loot/condition/ValueCheckLootCondition;test(Lnet/minecraft/loot/context/LootContext;)Z
intermediary method_32423
Lnet/minecraft/class_5644;method_32423(Lnet/minecraft/class_47;)Z
official a
Leud;a(Leqk;)Z
-
builder
public static LootCondition.Builder builder(LootNumberProvider value, BoundedIntUnaryOperator range) - Mappings:
Namespace Name Mixin selector named builder
Lnet/minecraft/loot/condition/ValueCheckLootCondition;builder(Lnet/minecraft/loot/provider/number/LootNumberProvider;Lnet/minecraft/loot/operator/BoundedIntUnaryOperator;)Lnet/minecraft/loot/condition/LootCondition$Builder;
intermediary method_35562
Lnet/minecraft/class_5644;method_35562(Lnet/minecraft/class_5658;Lnet/minecraft/class_42;)Lnet/minecraft/class_5341$class_210;
official a
Leud;a(Leup;Leqj;)Letu$a;
-
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 thevalue
record component.- Returns:
- the value of the
value
record component
-
range
Returns the value of therange
record component.- Returns:
- the value of the
range
record component
-