EntityTypePredicate
Importing the class
It might be required for you to import the package if you encounter any issues (like casting an Array), so better be safe than sorry and add the import at the very top of the file.
import crafttweaker.api.predicate.EntityTypePredicate;
Static Methods
Return Type: EntityTypePredicate
// EntityTypePredicate.any() as EntityTypePredicate
EntityTypePredicate.any();
Return Type: EntityTypePredicate
EntityTypePredicate.create(type as EntityType) as EntityTypePredicate
Parameter | Type |
---|---|
Parameter type | Type EntityType |
Return Type: EntityTypePredicate
EntityTypePredicate.create(type as KnownTag<EntityType>) as EntityTypePredicate
Parameter | Type |
---|---|
Parameter type | Type KnownTag<EntityType> |
Methods
Return Type: boolean
EntityTypePredicate.matches(type as EntityType) as boolean
Parameter | Type |
---|---|
Parameter type | Type EntityType |