Record Class SlideDownBlockTrigger.TriggerInstance
java.lang.Object
java.lang.Record
net.minecraft.advancements.criterion.SlideDownBlockTrigger.TriggerInstance
- All Implemented Interfaces:
SimpleCriterionTrigger.SimpleInstance, CriterionTriggerInstance
- Enclosing class:
SlideDownBlockTrigger
public static record SlideDownBlockTrigger.TriggerInstance(Optional<ContextAwarePredicate> player, Optional<Holder<Block>> block, Optional<StatePropertiesPredicate> state)
extends Record
implements SimpleCriterionTrigger.SimpleInstance
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe field for theblockrecord component.static final com.mojang.serialization.Codec<SlideDownBlockTrigger.TriggerInstance> private final Optional<ContextAwarePredicate> The field for theplayerrecord component.private final Optional<StatePropertiesPredicate> The field for thestaterecord component. -
Constructor Summary
ConstructorsConstructorDescriptionTriggerInstance(Optional<ContextAwarePredicate> player, Optional<Holder<Block>> block, Optional<StatePropertiesPredicate> state) Creates an instance of aTriggerInstancerecord class. -
Method Summary
Modifier and TypeMethodDescriptionblock()Returns the value of theblockrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.booleanmatches(BlockState state) player()Returns the value of theplayerrecord component.slidesDownBlock(Block block) state()Returns the value of thestaterecord component.final StringtoString()Returns a string representation of this record class.private static com.mojang.serialization.DataResult<SlideDownBlockTrigger.TriggerInstance> Methods inherited from interface SimpleCriterionTrigger.SimpleInstance
validate
-
Field Details
-
player
The field for theplayerrecord component. -
block
-
state
The field for thestaterecord component. -
CODEC
-
-
Constructor Details
-
TriggerInstance
public TriggerInstance(Optional<ContextAwarePredicate> player, Optional<Holder<Block>> block, Optional<StatePropertiesPredicate> state) Creates an instance of aTriggerInstancerecord class.- Parameters:
player- the value for theplayerrecord componentblock- the value for theblockrecord componentstate- the value for thestaterecord component
-
-
Method Details
-
validate
private static com.mojang.serialization.DataResult<SlideDownBlockTrigger.TriggerInstance> validate(SlideDownBlockTrigger.TriggerInstance trigger) -
slidesDownBlock
-
matches
-
toString
-
hashCode
-
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). -
player
Returns the value of theplayerrecord component.- Specified by:
playerin interfaceSimpleCriterionTrigger.SimpleInstance- Returns:
- the value of the
playerrecord component
-
block
-
state
Returns the value of thestaterecord component.- Returns:
- the value of the
staterecord component
-