Package net.minecraft.predicate.entity
Record Class EntityPredicate.PositionalPredicates
java.lang.Object
java.lang.Record
net.minecraft.predicate.entity.EntityPredicate.PositionalPredicates
- Record Components:
located
-steppingOn
-affectsMovement
-
- Enclosing class:
EntityPredicate
public static record EntityPredicate.PositionalPredicates(Optional<LocationPredicate> located, Optional<LocationPredicate> steppingOn, Optional<LocationPredicate> affectsMovement)
extends Record
- Mappings:
Namespace Name named net/minecraft/predicate/entity/EntityPredicate$PositionalPredicates
intermediary net/minecraft/class_2048$class_9777
official bv$b
named located
intermediary comp_2813
official b
named steppingOn
intermediary comp_2814
official c
named affectsMovement
intermediary comp_2815
official d
-
Field Summary
Modifier and TypeFieldDescriptionprivate final Optional
<LocationPredicate> The field for theaffectsMovement
record component.static final com.mojang.serialization.MapCodec
<EntityPredicate.PositionalPredicates> private final Optional
<LocationPredicate> The field for thelocated
record component.private final Optional
<LocationPredicate> The field for thesteppingOn
record component. -
Constructor Summary
ConstructorDescriptionPositionalPredicates
(Optional<LocationPredicate> optional, Optional<LocationPredicate> optional2, Optional<LocationPredicate> optional3) -
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
- Mappings:
Namespace Name Mixin selector named CODEC
Lnet/minecraft/predicate/entity/EntityPredicate$PositionalPredicates;CODEC:Lcom/mojang/serialization/MapCodec;
intermediary field_51939
Lnet/minecraft/class_2048$class_9777;field_51939:Lcom/mojang/serialization/MapCodec;
official a
Lbv$b;a:Lcom/mojang/serialization/MapCodec;
-
-
Constructor Details
-
PositionalPredicates
public PositionalPredicates(Optional<LocationPredicate> optional, Optional<LocationPredicate> optional2, Optional<LocationPredicate> optional3)
-
-
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
-