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 Summary
Modifier and TypeFieldDescriptionThe field for theblock
record component.static final com.mojang.serialization.Codec<SlideDownBlockTrigger.TriggerInstance>
private final Optional<ContextAwarePredicate>
The field for theplayer
record component.private final Optional<StatePropertiesPredicate>
The field for thestate
record component. -
Constructor Summary
ConstructorDescriptionTriggerInstance
(Optional<ContextAwarePredicate> player, Optional<Holder<Block>> block, Optional<StatePropertiesPredicate> state) Creates an instance of aTriggerInstance
record class. -
Method Summary
Modifier and TypeMethodDescriptionblock()
Returns the value of theblock
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.boolean
matches
(BlockState p_67009_) player()
Returns the value of theplayer
record component.slidesDownBlock
(Block p_67007_) state()
Returns the value of thestate
record component.final String
toString()
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.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface net.minecraft.advancements.critereon.SimpleCriterionTrigger.SimpleInstance
validate
-
Field Details
-
player
The field for theplayer
record component. -
block
The field for theblock
record component. -
state
The field for thestate
record component. -
CODEC
-
-
Constructor Details
-
TriggerInstance
public TriggerInstance(Optional<ContextAwarePredicate> player, Optional<Holder<Block>> block, Optional<StatePropertiesPredicate> state) Creates an instance of aTriggerInstance
record class.- Parameters:
player
- the value for theplayer
record componentblock
- the value for theblock
record componentstate
- the value for thestate
record component
-
-
Method Details
-
validate
private static com.mojang.serialization.DataResult<SlideDownBlockTrigger.TriggerInstance> validate(SlideDownBlockTrigger.TriggerInstance p_312038_) -
slidesDownBlock
-
matches
-
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)
. -
player
Returns the value of theplayer
record component.- Specified by:
player
in interfaceSimpleCriterionTrigger.SimpleInstance
- Returns:
- the value of the
player
record component
-
block
Returns the value of theblock
record component.- Returns:
- the value of the
block
record component
-
state
Returns the value of thestate
record component.- Returns:
- the value of the
state
record component
-