Record Class EntityFlagsPredicate
java.lang.Object
java.lang.Record
net.minecraft.advancements.critereon.EntityFlagsPredicate
-
Nested Class Summary
Nested Classes -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<EntityFlagsPredicate> The field for theisBabyrecord component.The field for theisCrouchingrecord component.The field for theisOnFirerecord 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.Returns the value of theisCrouchingrecord component.isOnFire()Returns the value of theisOnFirerecord 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. -
isCrouching
The field for theisCrouchingrecord component. -
isSprinting
The field for theisSprintingrecord component. -
isSwimming
The field for theisSwimmingrecord component. -
isBaby
The field for theisBabyrecord component. -
CODEC
-
-
Constructor Details
-
EntityFlagsPredicate
public EntityFlagsPredicate(Optional<Boolean> isOnFire, Optional<Boolean> isCrouching, Optional<Boolean> isSprinting, Optional<Boolean> isSwimming, Optional<Boolean> isBaby) Creates an instance of aEntityFlagsPredicaterecord class.- Parameters:
isOnFire- the value for theisOnFirerecord componentisCrouching- the value for theisCrouchingrecord componentisSprinting- the value for theisSprintingrecord componentisSwimming- the value for theisSwimmingrecord componentisBaby- the value for theisBabyrecord component
-
-
Method Details
-
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). -
isOnFire
Returns the value of theisOnFirerecord component.- Returns:
- the value of the
isOnFirerecord component
-
isCrouching
Returns the value of theisCrouchingrecord component.- Returns:
- the value of the
isCrouchingrecord 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
-