Record Class BlockPredicate
java.lang.Object
java.lang.Record
net.minecraft.advancements.critereon.BlockPredicate
- 
Nested Class SummaryNested Classes
- 
Field SummaryFieldsModifier and TypeFieldDescriptionThe field for theblocksrecord component.static final com.mojang.serialization.Codec<BlockPredicate>private final Optional<NbtPredicate>The field for thenbtrecord component.private final Optional<StatePropertiesPredicate>The field for thepropertiesrecord component.The field for thetagrecord component.
- 
Constructor SummaryConstructorsConstructorDescriptionBlockPredicate(Optional<TagKey<Block>> tag, Optional<HolderSet<Block>> blocks, Optional<StatePropertiesPredicate> properties, Optional<NbtPredicate> nbt) Creates an instance of aBlockPredicaterecord class.
- 
Method SummaryModifier and TypeMethodDescriptionblocks()Returns the value of theblocksrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.booleanmatches(ServerLevel p_17915_, BlockPos p_17916_) nbt()Returns the value of thenbtrecord component.Returns the value of thepropertiesrecord component.tag()Returns the value of thetagrecord component.final StringtoString()Returns a string representation of this record class.
- 
Field Details- 
tagThe field for thetagrecord component.
- 
blocksThe field for theblocksrecord component.
- 
propertiesThe field for thepropertiesrecord component.
- 
nbtThe field for thenbtrecord component.
- 
BLOCKS_CODEC
- 
CODEC
 
- 
- 
Constructor Details- 
BlockPredicatepublic BlockPredicate(Optional<TagKey<Block>> tag, Optional<HolderSet<Block>> blocks, Optional<StatePropertiesPredicate> properties, Optional<NbtPredicate> nbt) Creates an instance of aBlockPredicaterecord class.- Parameters:
- tag- the value for the- tagrecord component
- blocks- the value for the- blocksrecord component
- properties- the value for the- propertiesrecord component
- nbt- the value for the- nbtrecord component
 
 
- 
- 
Method Details- 
matches
- 
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).
- 
tagReturns the value of thetagrecord component.- Returns:
- the value of the tagrecord component
 
- 
blocksReturns the value of theblocksrecord component.- Returns:
- the value of the blocksrecord component
 
- 
propertiesReturns the value of thepropertiesrecord component.- Returns:
- the value of the propertiesrecord component
 
- 
nbtReturns the value of thenbtrecord component.- Returns:
- the value of the nbtrecord component
 
 
-