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 official efo
intermediary net/minecraft/class_212
named net/minecraft/loot/condition/BlockStatePropertyLootCondition
official b
intermediary comp_1876
named block
official c
intermediary comp_1877
named properties
-
Nested Class Summary
-
Field Summary
Modifier and TypeFieldDescriptionprivate final RegistryEntry<Block>
The field for theblock
record component.static final com.mojang.serialization.Codec<BlockStatePropertyLootCondition>
private final Optional<StatePredicate>
The field for theproperties
record component. -
Constructor Summary
ConstructorDescriptionBlockStatePropertyLootCondition
(RegistryEntry<Block> registryEntry, Optional<StatePredicate> optional) -
Method Summary
Modifier and TypeMethodDescriptionblock()
Returns the value of theblock
record component.final boolean
Indicates whether some other object is "equal to" this one.getType()
final int
hashCode()
Returns a hash code value for this object.Returns the value of theproperties
record component.boolean
test
(LootContext lootContext) final String
toString()
Returns a string representation of this record class.private static com.mojang.serialization.DataResult<BlockStatePropertyLootCondition>
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
-
block
The field for theblock
record component. -
properties
The field for theproperties
record component. -
CODEC
- Mappings:
Namespace Name Mixin selector official a
Lefo;a:Lcom/mojang/serialization/Codec;
intermediary field_45868
Lnet/minecraft/class_212;field_45868:Lcom/mojang/serialization/Codec;
named CODEC
Lnet/minecraft/loot/condition/BlockStatePropertyLootCondition;CODEC:Lcom/mojang/serialization/Codec;
-
-
Constructor Details
-
BlockStatePropertyLootCondition
public BlockStatePropertyLootCondition(RegistryEntry<Block> registryEntry, Optional<StatePredicate> optional)
-
-
Method Details
-
validateHasProperties
private static com.mojang.serialization.DataResult<BlockStatePropertyLootCondition> validateHasProperties(BlockStatePropertyLootCondition condition) - Mappings:
Namespace Name Mixin selector official a
Lefo;a(Lefo;)Lcom/mojang/serialization/DataResult;
intermediary method_53418
Lnet/minecraft/class_212;method_53418(Lnet/minecraft/class_212;)Lcom/mojang/serialization/DataResult;
named validateHasProperties
Lnet/minecraft/loot/condition/BlockStatePropertyLootCondition;validateHasProperties(Lnet/minecraft/loot/condition/BlockStatePropertyLootCondition;)Lcom/mojang/serialization/DataResult;
-
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
Lefo;a(Lecq;)Z
intermediary method_899
Lnet/minecraft/class_212;method_899(Lnet/minecraft/class_47;)Z
named test
Lnet/minecraft/loot/condition/BlockStatePropertyLootCondition;test(Lnet/minecraft/loot/context/LootContext;)Z
-
builder
- Mappings:
Namespace Name Mixin selector official a
Lefo;a(Lcsv;)Lefo$a;
intermediary method_900
Lnet/minecraft/class_212;method_900(Lnet/minecraft/class_2248;)Lnet/minecraft/class_212$class_213;
named builder
Lnet/minecraft/loot/condition/BlockStatePropertyLootCondition;builder(Lnet/minecraft/block/Block;)Lnet/minecraft/loot/condition/BlockStatePropertyLootCondition$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)
. -
block
Returns the value of theblock
record component.- Returns:
- the value of the
block
record component
-
properties
Returns the value of theproperties
record component.- Returns:
- the value of the
properties
record component
-