Record Class SlideDownBlockTrigger.TriggerInstance
java.lang.Object
java.lang.Record
net.minecraft.advancements.critereon.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 SummaryFieldsModifier 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 SummaryConstructorsConstructorDescriptionTriggerInstance(Optional<ContextAwarePredicate> player, Optional<Holder<Block>> block, Optional<StatePropertiesPredicate> state) Creates an instance of aTriggerInstancerecord class.
- 
Method SummaryModifier 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 p_67009_) player()Returns the value of theplayerrecord component.slidesDownBlock(Block p_67007_) 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>validate(SlideDownBlockTrigger.TriggerInstance p_312038_) Methods inherited from class java.lang.Objectclone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface net.minecraft.advancements.critereon.SimpleCriterionTrigger.SimpleInstancevalidate
- 
Field Details- 
playerThe field for theplayerrecord component.
- 
blockThe field for theblockrecord component.
- 
stateThe field for thestaterecord component.
- 
CODEC
 
- 
- 
Constructor Details- 
TriggerInstancepublic TriggerInstance(Optional<ContextAwarePredicate> player, Optional<Holder<Block>> block, Optional<StatePropertiesPredicate> state) Creates an instance of aTriggerInstancerecord class.- Parameters:
- player- the value for the- playerrecord component
- block- the value for the- blockrecord component
- state- the value for the- staterecord component
 
 
- 
- 
Method Details- 
validateprivate static com.mojang.serialization.DataResult<SlideDownBlockTrigger.TriggerInstance> validate(SlideDownBlockTrigger.TriggerInstance p_312038_) 
- 
slidesDownBlock
- 
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).
- 
playerReturns the value of theplayerrecord component.- Specified by:
- playerin interface- SimpleCriterionTrigger.SimpleInstance
- Returns:
- the value of the playerrecord component
 
- 
blockReturns the value of theblockrecord component.- Returns:
- the value of the blockrecord component
 
- 
stateReturns the value of thestaterecord component.- Returns:
- the value of the staterecord component
 
 
-