Record Class EntityPredicate.LocationWrapper
java.lang.Object
java.lang.Record
net.minecraft.advancements.critereon.EntityPredicate.LocationWrapper
- Enclosing class:
EntityPredicate
public static record EntityPredicate.LocationWrapper(Optional<LocationPredicate> located, Optional<LocationPredicate> steppingOn, Optional<LocationPredicate> affectsMovement)
extends Record
-
Field Summary
Modifier and TypeFieldDescriptionprivate final Optional
<LocationPredicate> The field for theaffectsMovement
record component.static final com.mojang.serialization.MapCodec
<EntityPredicate.LocationWrapper> private final Optional
<LocationPredicate> The field for thelocated
record component.private final Optional
<LocationPredicate> The field for thesteppingOn
record component. -
Constructor Summary
ConstructorDescriptionLocationWrapper
(Optional<LocationPredicate> located, Optional<LocationPredicate> steppingOn, Optional<LocationPredicate> affectsMovement) Creates an instance of aLocationWrapper
record class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theaffectsMovement
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.located()
Returns the value of thelocated
record component.Returns the value of thesteppingOn
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
located
The field for thelocated
record component. -
steppingOn
The field for thesteppingOn
record component. -
affectsMovement
The field for theaffectsMovement
record component. -
CODEC
-
-
Constructor Details
-
LocationWrapper
public LocationWrapper(Optional<LocationPredicate> located, Optional<LocationPredicate> steppingOn, Optional<LocationPredicate> affectsMovement) Creates an instance of aLocationWrapper
record class.- Parameters:
located
- the value for thelocated
record componentsteppingOn
- the value for thesteppingOn
record componentaffectsMovement
- the value for theaffectsMovement
record component
-
-
Method Details
-
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)
. -
located
Returns the value of thelocated
record component.- Returns:
- the value of the
located
record component
-
steppingOn
Returns the value of thesteppingOn
record component.- Returns:
- the value of the
steppingOn
record component
-
affectsMovement
Returns the value of theaffectsMovement
record component.- Returns:
- the value of the
affectsMovement
record component
-