Package net.minecraft.loot.condition
Record Class BlockStatePropertyLootCondition
java.lang.Object
java.lang.Record
net.minecraft.loot.condition.BlockStatePropertyLootCondition
- Record Components:
- block-
- properties-
- All Implemented Interfaces:
- Predicate<LootContext>,- LootCondition,- LootContextAware
public record BlockStatePropertyLootCondition(RegistryEntry<Block> block, Optional<StatePredicate> properties)
extends Record
implements LootCondition
- Mappings:
- Namespace - Name - named - net/minecraft/loot/condition/BlockStatePropertyLootCondition- intermediary - net/minecraft/class_212- official - eza- named - block- intermediary - comp_1876- official - b- named - properties- intermediary - comp_1877- official - c
- 
Nested Class SummaryNested Classes
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprivate final RegistryEntry<Block> The field for theblockrecord component.static final com.mojang.serialization.MapCodec<BlockStatePropertyLootCondition> private final Optional<StatePredicate> The field for thepropertiesrecord component.Fields inherited from interface net.minecraft.loot.condition.LootConditionBASE_CODEC, ENTRY_CODEC
- 
Constructor SummaryConstructorsConstructorDescriptionBlockStatePropertyLootCondition(RegistryEntry<Block> registryEntry, Optional<StatePredicate> optional) 
- 
Method SummaryModifier and TypeMethodDescriptionblock()Returns the value of theblockrecord component.final booleanIndicates whether some other object is "equal to" this one.Set<ContextParameter<?>> getType()final inthashCode()Returns a hash code value for this object.Returns the value of thepropertiesrecord component.booleantest(LootContext lootContext) final StringtoString()Returns a string representation of this record class.private static com.mojang.serialization.DataResult<BlockStatePropertyLootCondition> Methods inherited from class java.lang.Objectclone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface net.minecraft.loot.context.LootContextAwarevalidate
- 
Field Details- 
blockThe field for theblockrecord component.
- 
propertiesThe field for thepropertiesrecord component.
- 
CODEC- Mappings:
- Namespace - Name - Mixin selector - named - CODEC- Lnet/minecraft/loot/condition/BlockStatePropertyLootCondition;CODEC:Lcom/mojang/serialization/MapCodec;- intermediary - field_45868- Lnet/minecraft/class_212;field_45868:Lcom/mojang/serialization/MapCodec;- official - a- Leza;a:Lcom/mojang/serialization/MapCodec;
 
 
- 
- 
Constructor Details- 
BlockStatePropertyLootConditionpublic BlockStatePropertyLootCondition(RegistryEntry<Block> registryEntry, Optional<StatePredicate> optional) 
 
- 
- 
Method Details- 
validateHasPropertiesprivate static com.mojang.serialization.DataResult<BlockStatePropertyLootCondition> validateHasProperties(BlockStatePropertyLootCondition condition) - Mappings:
- Namespace - Name - Mixin selector - named - validateHasProperties- Lnet/minecraft/loot/condition/BlockStatePropertyLootCondition;validateHasProperties(Lnet/minecraft/loot/condition/BlockStatePropertyLootCondition;)Lcom/mojang/serialization/DataResult;- intermediary - method_53418- Lnet/minecraft/class_212;method_53418(Lnet/minecraft/class_212;)Lcom/mojang/serialization/DataResult;- official - a- Leza;a(Leza;)Lcom/mojang/serialization/DataResult;
 
- 
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/BlockStatePropertyLootCondition;test(Lnet/minecraft/loot/context/LootContext;)Z- intermediary - method_899- Lnet/minecraft/class_212;method_899(Lnet/minecraft/class_47;)Z- official - a- Leza;a(Levs;)Z
 
- 
builder- Mappings:
- Namespace - Name - Mixin selector - named - builder- Lnet/minecraft/loot/condition/BlockStatePropertyLootCondition;builder(Lnet/minecraft/block/Block;)Lnet/minecraft/loot/condition/BlockStatePropertyLootCondition$Builder;- intermediary - method_900- Lnet/minecraft/class_212;method_900(Lnet/minecraft/class_2248;)Lnet/minecraft/class_212$class_213;- official - a- Leza;a(Ldjn;)Leza$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).
- 
blockReturns the value of theblockrecord component.- Returns:
- the value of the blockrecord component
 
- 
propertiesReturns the value of thepropertiesrecord component.- Returns:
- the value of the propertiesrecord component
 
 
-