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 bnintermediary net/minecraft/class_2040named net/minecraft/predicate/entity/EntityFlagsPredicateofficial bintermediary comp_1756named isOnFireofficial cintermediary comp_1757named isSneakingofficial dintermediary comp_1758named isSprintingofficial eintermediary comp_1759named isSwimmingofficial fintermediary comp_1760named isBaby
-
Nested Class Summary
Nested Classes -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<EntityFlagsPredicate>The field for theisBabyrecord component.The field for theisOnFirerecord component.The field for theisSneakingrecord component.The field for theisSprintingrecord component.The field for theisSwimmingrecord component. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.isBaby()Returns the value of theisBabyrecord component.isOnFire()Returns the value of theisOnFirerecord component.Returns the value of theisSneakingrecord component.Returns the value of theisSprintingrecord component.Returns the value of theisSwimmingrecord component.booleanfinal StringtoString()Returns a string representation of this record class.
-
Field Details
-
isOnFire
The field for theisOnFirerecord component. -
isSneaking
The field for theisSneakingrecord component. -
isSprinting
The field for theisSprintingrecord component. -
isSwimming
The field for theisSwimmingrecord component. -
isBaby
The field for theisBabyrecord component. -
CODEC
- Mappings:
Namespace Name Mixin selector official aLbn;a:Lcom/mojang/serialization/Codec;intermediary field_45745Lnet/minecraft/class_2040;field_45745:Lcom/mojang/serialization/Codec;named CODECLnet/minecraft/predicate/entity/EntityFlagsPredicate;CODEC:Lcom/mojang/serialization/Codec;
-
-
Constructor Details
-
EntityFlagsPredicate
-
-
Method Details
-
test
- Mappings:
Namespace Name Mixin selector official aLbn;a(Lblv;)Zintermediary method_8892Lnet/minecraft/class_2040;method_8892(Lnet/minecraft/class_1297;)Znamed testLnet/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 theisOnFirerecord component.- Returns:
- the value of the
isOnFirerecord component
-
isSneaking
Returns the value of theisSneakingrecord component.- Returns:
- the value of the
isSneakingrecord component
-
isSprinting
Returns the value of theisSprintingrecord component.- Returns:
- the value of the
isSprintingrecord component
-
isSwimming
Returns the value of theisSwimmingrecord component.- Returns:
- the value of the
isSwimmingrecord component
-
isBaby
Returns the value of theisBabyrecord component.- Returns:
- the value of the
isBabyrecord component
-