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 theisFlyingrecord component.The field for theisOnFirerecord component.The field for theisOnGroundrecord component.The field for theisSprintingrecord component.The field for theisSwimmingrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionEntityFlagsPredicate(Optional<Boolean> isOnGround, Optional<Boolean> isOnFire, Optional<Boolean> isCrouching, Optional<Boolean> isSprinting, Optional<Boolean> isSwimming, Optional<Boolean> isFlying, Optional<Boolean> isBaby) Creates an instance of aEntityFlagsPredicaterecord class. -
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.isFlying()Returns the value of theisFlyingrecord component.isOnFire()Returns the value of theisOnFirerecord component.Returns the value of theisOnGroundrecord 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
-
isOnGround
The field for theisOnGroundrecord component. -
isOnFire
The field for theisOnFirerecord component. -
isCrouching
The field for theisCrouchingrecord component. -
isSprinting
The field for theisSprintingrecord component. -
isSwimming
The field for theisSwimmingrecord component. -
isFlying
The field for theisFlyingrecord component. -
isBaby
The field for theisBabyrecord component. -
CODEC
-
-
Constructor Details
-
EntityFlagsPredicate
public EntityFlagsPredicate(Optional<Boolean> isOnGround, Optional<Boolean> isOnFire, Optional<Boolean> isCrouching, Optional<Boolean> isSprinting, Optional<Boolean> isSwimming, Optional<Boolean> isFlying, Optional<Boolean> isBaby) Creates an instance of aEntityFlagsPredicaterecord class.- Parameters:
isOnGround- the value for theisOnGroundrecord componentisOnFire- the value for theisOnFirerecord componentisCrouching- the value for theisCrouchingrecord componentisSprinting- the value for theisSprintingrecord componentisSwimming- the value for theisSwimmingrecord componentisFlying- the value for theisFlyingrecord 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). -
isOnGround
Returns the value of theisOnGroundrecord component.- Returns:
- the value of the
isOnGroundrecord component
-
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
-
isFlying
Returns the value of theisFlyingrecord component.- Returns:
- the value of the
isFlyingrecord component
-
isBaby
Returns the value of theisBabyrecord component.- Returns:
- the value of the
isBabyrecord component
-