Package net.minecraft.loot.condition
Record Class LocationCheckLootCondition
java.lang.Object
java.lang.Record
net.minecraft.loot.condition.LocationCheckLootCondition
- Record Components:
predicate-offset-
- All Implemented Interfaces:
Predicate<LootContext>,LootCondition,LootContextAware
public record LocationCheckLootCondition(Optional<LocationPredicate> predicate, BlockPos offset)
extends Record
implements LootCondition
- Mappings:
Namespace Name official ejtintermediary net/minecraft/class_205named net/minecraft/loot/condition/LocationCheckLootConditionofficial bintermediary comp_1874named predicateofficial cintermediary comp_1875named offset
-
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<LocationCheckLootCondition>private final BlockPosThe field for theoffsetrecord component.private static final com.mojang.serialization.MapCodec<BlockPos>private final Optional<LocationPredicate>The field for thepredicaterecord component. -
Constructor Summary
ConstructorsConstructorDescriptionLocationCheckLootCondition(Optional<LocationPredicate> optional, BlockPos offset) -
Method Summary
Modifier and TypeMethodDescriptionstatic LootCondition.Builderbuilder(LocationPredicate.Builder predicateBuilder) static LootCondition.Builderbuilder(LocationPredicate.Builder predicateBuilder, BlockPos pos) final booleanIndicates whether some other object is "equal to" this one.getType()final inthashCode()Returns a hash code value for this object.offset()Returns the value of theoffsetrecord component.Returns the value of thepredicaterecord component.booleantest(LootContext lootContext) final StringtoString()Returns a string representation of this record class.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface net.minecraft.loot.context.LootContextAware
getRequiredParameters, validate
-
Field Details
-
predicate
The field for thepredicaterecord component. -
offset
The field for theoffsetrecord component. -
OFFSET_CODEC
- Mappings:
Namespace Name Mixin selector official dLejt;d:Lcom/mojang/serialization/MapCodec;intermediary field_45867Lnet/minecraft/class_205;field_45867:Lcom/mojang/serialization/MapCodec;named OFFSET_CODECLnet/minecraft/loot/condition/LocationCheckLootCondition;OFFSET_CODEC:Lcom/mojang/serialization/MapCodec;
-
CODEC
- Mappings:
Namespace Name Mixin selector official aLejt;a:Lcom/mojang/serialization/Codec;intermediary field_45866Lnet/minecraft/class_205;field_45866:Lcom/mojang/serialization/Codec;named CODECLnet/minecraft/loot/condition/LocationCheckLootCondition;CODEC:Lcom/mojang/serialization/Codec;
-
-
Constructor Details
-
LocationCheckLootCondition
- Mappings:
Namespace Name Mixin selector official <init>Lejt;<init>(Ljava/util/Optional;Lhx;)Vintermediary <init>Lnet/minecraft/class_205;<init>(Ljava/util/Optional;Lnet/minecraft/class_2338;)Vnamed <init>Lnet/minecraft/loot/condition/LocationCheckLootCondition;<init>(Ljava/util/Optional;Lnet/minecraft/util/math/BlockPos;)V
-
-
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;
-
test
- Specified by:
testin interfacePredicate<LootContext>- Mappings:
Namespace Name Mixin selector official aLejt;a(Legw;)Zintermediary method_881Lnet/minecraft/class_205;method_881(Lnet/minecraft/class_47;)Znamed testLnet/minecraft/loot/condition/LocationCheckLootCondition;test(Lnet/minecraft/loot/context/LootContext;)Z
-
builder
- Mappings:
Namespace Name Mixin selector official aLejt;a(Lci$a;)Lejv$a;intermediary method_884Lnet/minecraft/class_205;method_884(Lnet/minecraft/class_2090$class_2091;)Lnet/minecraft/class_5341$class_210;named builderLnet/minecraft/loot/condition/LocationCheckLootCondition;builder(Lnet/minecraft/predicate/entity/LocationPredicate$Builder;)Lnet/minecraft/loot/condition/LootCondition$Builder;
-
builder
public static LootCondition.Builder builder(LocationPredicate.Builder predicateBuilder, BlockPos pos) - Mappings:
Namespace Name Mixin selector official aLejt;a(Lci$a;Lhx;)Lejv$a;intermediary method_30151Lnet/minecraft/class_205;method_30151(Lnet/minecraft/class_2090$class_2091;Lnet/minecraft/class_2338;)Lnet/minecraft/class_5341$class_210;named builderLnet/minecraft/loot/condition/LocationCheckLootCondition;builder(Lnet/minecraft/predicate/entity/LocationPredicate$Builder;Lnet/minecraft/util/math/BlockPos;)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). -
predicate
Returns the value of thepredicaterecord component.- Returns:
- the value of the
predicaterecord component
-
offset
Returns the value of theoffsetrecord component.- Returns:
- the value of the
offsetrecord component
-