Package net.minecraft.loot.condition
Record Class TimeCheckLootCondition
java.lang.Object
java.lang.Record
net.minecraft.loot.condition.TimeCheckLootCondition
- Record Components:
period
-value
-
- All Implemented Interfaces:
Predicate<LootContext>
,LootCondition
,LootContextAware
public record TimeCheckLootCondition(Optional<Long> period, BoundedIntUnaryOperator value)
extends Record
implements LootCondition
- Mappings:
Namespace Name official efx
intermediary net/minecraft/class_4571
named net/minecraft/loot/condition/TimeCheckLootCondition
official b
intermediary comp_1885
named period
official c
intermediary comp_1886
named value
-
Nested Class Summary
-
Field Summary
Modifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<TimeCheckLootCondition>
The field for theperiod
record component.private final BoundedIntUnaryOperator
The field for thevalue
record component. -
Constructor Summary
ConstructorDescriptionTimeCheckLootCondition
(Optional<Long> optional, BoundedIntUnaryOperator value) -
Method Summary
Modifier and TypeMethodDescriptioncreate
(BoundedIntUnaryOperator value) final boolean
Indicates whether some other object is "equal to" this one.getType()
final int
hashCode()
Returns a hash code value for this object.period()
Returns the value of theperiod
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
-
period
The field for theperiod
record component. -
value
The field for thevalue
record component. -
CODEC
- Mappings:
Namespace Name Mixin selector official a
Lefx;a:Lcom/mojang/serialization/Codec;
intermediary field_45876
Lnet/minecraft/class_4571;field_45876:Lcom/mojang/serialization/Codec;
named CODEC
Lnet/minecraft/loot/condition/TimeCheckLootCondition;CODEC:Lcom/mojang/serialization/Codec;
-
-
Constructor Details
-
TimeCheckLootCondition
- Mappings:
Namespace Name Mixin selector official <init>
Lefx;<init>(Ljava/util/Optional;Lecp;)V
intermediary <init>
Lnet/minecraft/class_4571;<init>(Ljava/util/Optional;Lnet/minecraft/class_42;)V
named <init>
Lnet/minecraft/loot/condition/TimeCheckLootCondition;<init>(Ljava/util/Optional;Lnet/minecraft/loot/operator/BoundedIntUnaryOperator;)V
-
-
Method Details
-
getType
- Specified by:
getType
in interfaceLootCondition
- Mappings:
Namespace Name Mixin selector official b
Lefp;b()Lefq;
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
Lecr;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
Lefx;a(Lecq;)Z
intermediary method_22587
Lnet/minecraft/class_4571;method_22587(Lnet/minecraft/class_47;)Z
named test
Lnet/minecraft/loot/condition/TimeCheckLootCondition;test(Lnet/minecraft/loot/context/LootContext;)Z
-
create
- Mappings:
Namespace Name Mixin selector official a
Lefx;a(Lecp;)Lefx$a;
intermediary method_35559
Lnet/minecraft/class_4571;method_35559(Lnet/minecraft/class_42;)Lnet/minecraft/class_4571$class_6164;
named create
Lnet/minecraft/loot/condition/TimeCheckLootCondition;create(Lnet/minecraft/loot/operator/BoundedIntUnaryOperator;)Lnet/minecraft/loot/condition/TimeCheckLootCondition$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)
. -
period
Returns the value of theperiod
record component.- Returns:
- the value of the
period
record component
-
value
Returns the value of thevalue
record component.- Returns:
- the value of the
value
record component
-