Package net.minecraft.predicate.entity
Record Class EntityFlagsPredicate
java.lang.Object
java.lang.Record
net.minecraft.predicate.entity.EntityFlagsPredicate
- Record Components:
isOnFire
-isSneaking
-isSprinting
-isSwimming
-isBaby
-
public record EntityFlagsPredicate(Optional<Boolean> isOnFire, Optional<Boolean> isSneaking, Optional<Boolean> isSprinting, Optional<Boolean> isSwimming, Optional<Boolean> isBaby)
extends Record
- Mappings:
Namespace Name official bn
intermediary net/minecraft/class_2040
named net/minecraft/predicate/entity/EntityFlagsPredicate
official b
intermediary comp_1756
named isOnFire
official c
intermediary comp_1757
named isSneaking
official d
intermediary comp_1758
named isSprinting
official e
intermediary comp_1759
named isSwimming
official f
intermediary comp_1760
named isBaby
-
Nested Class Summary
-
Field Summary
Modifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<EntityFlagsPredicate>
The field for theisBaby
record component.The field for theisOnFire
record component.The field for theisSneaking
record component.The field for theisSprinting
record component.The field for theisSwimming
record component. -
Constructor Summary
-
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.isBaby()
Returns the value of theisBaby
record component.isOnFire()
Returns the value of theisOnFire
record component.Returns the value of theisSneaking
record component.Returns the value of theisSprinting
record component.Returns the value of theisSwimming
record component.boolean
final String
toString()
Returns a string representation of this record class.
-
Field Details
-
isOnFire
The field for theisOnFire
record component. -
isSneaking
The field for theisSneaking
record component. -
isSprinting
The field for theisSprinting
record component. -
isSwimming
The field for theisSwimming
record component. -
isBaby
The field for theisBaby
record component. -
CODEC
- Mappings:
Namespace Name Mixin selector official a
Lbn;a:Lcom/mojang/serialization/Codec;
intermediary field_45745
Lnet/minecraft/class_2040;field_45745:Lcom/mojang/serialization/Codec;
named CODEC
Lnet/minecraft/predicate/entity/EntityFlagsPredicate;CODEC:Lcom/mojang/serialization/Codec;
-
-
Constructor Details
-
EntityFlagsPredicate
-
-
Method Details
-
test
- Mappings:
Namespace Name Mixin selector official a
Lbn;a(Lblv;)Z
intermediary method_8892
Lnet/minecraft/class_2040;method_8892(Lnet/minecraft/class_1297;)Z
named test
Lnet/minecraft/predicate/entity/EntityFlagsPredicate;test(Lnet/minecraft/entity/Entity;)Z
-
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)
. -
isOnFire
Returns the value of theisOnFire
record component.- Returns:
- the value of the
isOnFire
record component
-
isSneaking
Returns the value of theisSneaking
record component.- Returns:
- the value of the
isSneaking
record component
-
isSprinting
Returns the value of theisSprinting
record component.- Returns:
- the value of the
isSprinting
record component
-
isSwimming
Returns the value of theisSwimming
record component.- Returns:
- the value of the
isSwimming
record component
-
isBaby
Returns the value of theisBaby
record component.- Returns:
- the value of the
isBaby
record component
-