Record Class ChangeDimensionTrigger.TriggerInstance
java.lang.Object
java.lang.Record
net.minecraft.advancements.critereon.ChangeDimensionTrigger.TriggerInstance
- All Implemented Interfaces:
SimpleCriterionTrigger.SimpleInstance
,CriterionTriggerInstance
- Enclosing class:
ChangeDimensionTrigger
public static record ChangeDimensionTrigger.TriggerInstance(Optional<ContextAwarePredicate> player, Optional<ResourceKey<Level>> from, Optional<ResourceKey<Level>> to)
extends Record
implements SimpleCriterionTrigger.SimpleInstance
-
Field Summary
Modifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<ChangeDimensionTrigger.TriggerInstance>
private final Optional<ResourceKey<Level>>
The field for thefrom
record component.private final Optional<ContextAwarePredicate>
The field for theplayer
record component.private final Optional<ResourceKey<Level>>
The field for theto
record component. -
Constructor Summary
ConstructorDescriptionTriggerInstance
(Optional<ContextAwarePredicate> player, Optional<ResourceKey<Level>> from, Optional<ResourceKey<Level>> to) Creates an instance of aTriggerInstance
record class. -
Method Summary
Modifier and TypeMethodDescriptionchangedDimension
(ResourceKey<Level> p_301026_, ResourceKey<Level> p_301124_) changedDimensionFrom
(ResourceKey<Level> p_147564_) changedDimensionTo
(ResourceKey<Level> p_19783_) final boolean
Indicates whether some other object is "equal to" this one.from()
Returns the value of thefrom
record component.final int
hashCode()
Returns a hash code value for this object.boolean
matches
(ResourceKey<Level> p_19785_, ResourceKey<Level> p_19786_) player()
Returns the value of theplayer
record component.to()
Returns the value of theto
record component.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. -
from
The field for thefrom
record component. -
to
The field for theto
record component. -
CODEC
-
-
Constructor Details
-
TriggerInstance
public TriggerInstance(Optional<ContextAwarePredicate> player, Optional<ResourceKey<Level>> from, Optional<ResourceKey<Level>> to) Creates an instance of aTriggerInstance
record class.- Parameters:
player
- the value for theplayer
record componentfrom
- the value for thefrom
record componentto
- the value for theto
record component
-
-
Method Details
-
changedDimension
-
changedDimension
public static Criterion<ChangeDimensionTrigger.TriggerInstance> changedDimension(ResourceKey<Level> p_301026_, ResourceKey<Level> p_301124_) -
changedDimensionTo
public static Criterion<ChangeDimensionTrigger.TriggerInstance> changedDimensionTo(ResourceKey<Level> p_19783_) -
changedDimensionFrom
public static Criterion<ChangeDimensionTrigger.TriggerInstance> changedDimensionFrom(ResourceKey<Level> p_147564_) -
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
-
from
Returns the value of thefrom
record component.- Returns:
- the value of the
from
record component
-
to
Returns the value of theto
record component.- Returns:
- the value of the
to
record component
-