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 - named - net/minecraft/loot/condition/TimeCheckLootCondition- intermediary - net/minecraft/class_4571- official - ezj- named - period- intermediary - comp_1885- official - b- named - value- intermediary - comp_1886- official - c
- 
Nested Class SummaryNested Classes
- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final com.mojang.serialization.MapCodec<TimeCheckLootCondition> The field for theperiodrecord component.private final BoundedIntUnaryOperatorThe field for thevaluerecord component.Fields inherited from interface net.minecraft.loot.condition.LootConditionBASE_CODEC, ENTRY_CODEC
- 
Constructor SummaryConstructorsConstructorDescriptionTimeCheckLootCondition(Optional<Long> optional, BoundedIntUnaryOperator value) 
- 
Method SummaryModifier and TypeMethodDescriptioncreate(BoundedIntUnaryOperator value) final booleanIndicates whether some other object is "equal to" this one.Set<ContextParameter<?>> getType()final inthashCode()Returns a hash code value for this object.period()Returns the value of theperiodrecord 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.Objectclone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface net.minecraft.loot.context.LootContextAwarevalidate
- 
Field Details- 
periodThe field for theperiodrecord component.
- 
valueThe field for thevaluerecord component.
- 
CODEC- Mappings:
- Namespace - Name - Mixin selector - named - CODEC- Lnet/minecraft/loot/condition/TimeCheckLootCondition;CODEC:Lcom/mojang/serialization/MapCodec;- intermediary - field_45876- Lnet/minecraft/class_4571;field_45876:Lcom/mojang/serialization/MapCodec;- official - a- Lezj;a:Lcom/mojang/serialization/MapCodec;
 
 
- 
- 
Constructor Details- 
TimeCheckLootCondition- Mappings:
- Namespace - Name - Mixin selector - named - <init>- Lnet/minecraft/loot/condition/TimeCheckLootCondition;<init>(Ljava/util/Optional;Lnet/minecraft/loot/operator/BoundedIntUnaryOperator;)V- intermediary - <init>- Lnet/minecraft/class_4571;<init>(Ljava/util/Optional;Lnet/minecraft/class_42;)V- official - <init>- Lezj;<init>(Ljava/util/Optional;Levr;)V
 
 
- 
- 
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/TimeCheckLootCondition;test(Lnet/minecraft/loot/context/LootContext;)Z- intermediary - method_22587- Lnet/minecraft/class_4571;method_22587(Lnet/minecraft/class_47;)Z- official - a- Lezj;a(Levs;)Z
 
- 
create- Mappings:
- Namespace - Name - Mixin selector - named - create- Lnet/minecraft/loot/condition/TimeCheckLootCondition;create(Lnet/minecraft/loot/operator/BoundedIntUnaryOperator;)Lnet/minecraft/loot/condition/TimeCheckLootCondition$Builder;- intermediary - method_35559- Lnet/minecraft/class_4571;method_35559(Lnet/minecraft/class_42;)Lnet/minecraft/class_4571$class_6164;- official - a- Lezj;a(Levr;)Lezj$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).
- 
periodReturns the value of theperiodrecord component.- Returns:
- the value of the periodrecord component
 
- 
valueReturns the value of thevaluerecord component.- Returns:
- the value of the valuerecord component
 
 
-