Record Class StartRidingTrigger.TriggerInstance
java.lang.Object
java.lang.Record
net.minecraft.advancements.critereon.StartRidingTrigger.TriggerInstance
- All Implemented Interfaces:
SimpleCriterionTrigger.SimpleInstance
,CriterionTriggerInstance
- Enclosing class:
- StartRidingTrigger
public static record StartRidingTrigger.TriggerInstance(Optional<ContextAwarePredicate> player)
extends Record
implements SimpleCriterionTrigger.SimpleInstance
-
Field Summary
Modifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<StartRidingTrigger.TriggerInstance>
private final Optional<ContextAwarePredicate>
The field for theplayer
record component. -
Constructor Summary
ConstructorDescriptionTriggerInstance
(Optional<ContextAwarePredicate> player) Creates an instance of aTriggerInstance
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.player()
Returns the value of theplayer
record component.playerStartsRiding
(EntityPredicate.Builder p_160402_) final String
toString()
Returns a string representation of this record class.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. -
CODEC
-
-
Constructor Details
-
TriggerInstance
Creates an instance of aTriggerInstance
record class.- Parameters:
player
- the value for theplayer
record component
-
-
Method Details
-
playerStartsRiding
public static Criterion<StartRidingTrigger.TriggerInstance> playerStartsRiding(EntityPredicate.Builder p_160402_) -
player
Returns the value of theplayer
record component.- Specified by:
player
in interfaceSimpleCriterionTrigger.SimpleInstance
- Returns:
- the value of the
player
record component
-
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)
.
-