ItemPredicate
Represents the predicate for an MCItemDefinition.
This predicate will match an item against either a specific MCItemDefinition or item tag (MCTag<T>), with the second taking precedence over the first. If this initial check succeeds, then the predicate may also verify additional item properties, such as its current amount, its damage, or internal NBT data via NBTPredicate. The predicate can also check the enchantments that are currently either applied to or stored onto the item via EnchantmentPredicates, or the potion effect that is currently present on the item, if any.
By default, any item will be able to pass the checks of this predicate.
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.
Extending AnyDefaultingVanillaWrappingPredicate
ItemPredicate extends AnyDefaultingVanillaWrappingPredicate. That means all methods available in AnyDefaultingVanillaWrappingPredicate are also available in ItemPredicate
Methods
Sets this predicate to match the given IItemStack as closely as possible.
Additional properties such as damage, count, or NBT data are ignored.
Returns: This predicate for chaining.
Return Type: ItemPredicate
Parameter | Type | Description |
---|---|---|
Parameter stack | Type IItemStack | Description The stack that should be matched. |
Sets this predicate to match the given IItemStack as closely as possible, optionally considering damage.
Additional properties such as count or NBT data are ignored.
Returns: This predicate for chaining.
Return Type: ItemPredicate
Parameter | Type | Description |
---|---|---|
Parameter stack | Type IItemStack | Description The stack that should be matched. |
Parameter matchDamage | Type boolean | Description Whether to consider damage or not when matching the stack. |
Sets this predicate to match the given IItemStack as closely as possible, optionally considering damage and count.
Additional properties such as NBT data are ignored.
Returns: This predicate for chaining.
Return Type: ItemPredicate
Parameter | Type | Description |
---|---|---|
Parameter stack | Type IItemStack | Description The stack that should be matched. |
Parameter matchDamage | Type boolean | Description Whether to consider damage or not when matching the stack. |
Parameter matchCount | Type boolean | Description Whether to consider the amount or not when matching the stack. |
Sets this predicate to match the given IItemStack as closely as possible, optionally considering damage, count, and NBT data.
Returns: This predicate for chaining.
Return Type: ItemPredicate
Parameter | Type | Description |
---|---|---|
Parameter stack | Type IItemStack | Description The stack that should be matched. |
Parameter matchDamage | Type boolean | Description Whether to consider damage or not when matching the stack. |
Parameter matchCount | Type boolean | Description Whether to consider the amount or not when matching the stack. |
Parameter matchNbt | Type boolean | Description Whether to consider the NBT data or not when matching the stack. |
Creates and sets the NBTPredicate that will be matched against the item’s NBT data.
Any changes that have already been made to the NBT predicate will be overwritten, effectively replacing the previous one, if any.
Returns: This predicate for chaining.
Return Type: ItemPredicate
Parameter | Type | Description |
---|---|---|
Parameter builder | Type Consumer<NBTPredicate> | Description A consumer that will be used to configure the NBTPredicate. |
Creates and adds a new EnchantmentPredicate to the list of predicates to match against the item’s enchantments.
The added predicate is simply added to the list. No validity checks are performed, meaning that there may be multiple predicates that target a single enchantment. In this case, they all need to match, thus they have to have compatible bounds.
Returns: This predicate for chaining.
Return Type: ItemPredicate
Parameter | Type | Description |
---|---|---|
Parameter builder | Type Consumer<EnchantmentPredicate> | Description A consumer that will be used to configure the EnchantmentPredicate. |
Creates and adds a new EnchantmentPredicate for the given MCEnchantment to the list of predicates to match against the item’s enchantments.
The predicate that will be configured is already configured to target the specified enchantment.
The added predicate is simply added to the list. No validity checks are performed, meaning that there may be multiple predicates that target a single enchantment. In this case, they all need to match, thus they have to have compatible bounds.
Returns: This predicate for chaining.
Return Type: ItemPredicate
Parameter | Type | Description |
---|---|---|
Parameter enchantment | Type MCEnchantment | Description The enchantment that should be checked. |
Parameter builder | Type Consumer<EnchantmentPredicate> | Description A consumer that will be used to configure the EnchantmentPredicate. |
Sets the amount to exactly match the given value
.
If the amount had already some bounds specified, then they will be overwritten with the new value.
Returns: This predicate for chaining.
Return Type: ItemPredicate
Parameter | Type | Description |
---|---|---|
Parameter value | Type int | Description The exact value the amount should be. |
Sets the damage to exactly match the given value
.
If the damage had already some bounds specified, then they will be overwritten with the new value.
Returns: This predicate for chaining.
Return Type: ItemPredicate
Parameter | Type | Description |
---|---|---|
Parameter value | Type int | Description The exact value the damage should be. |
Sets the MCItemDefinition that this predicate should match.
If a tag to match against has already been set, then the tag check will take precedence over this check.
Returns: This predicate for chaining.
Return Type: ItemPredicate
Parameter | Type | Description |
---|---|---|
Parameter definition | Type MCItemDefinition | Description The item the predicate should match. |
Sets the MCItemDefinition that this predicate should match to the one contained in the given IItemStack.
If a tag to match against has already been set, then the tag check will take precedence over this check.
Returns: This predicate for chaining.
Return Type: ItemPredicate
Parameter | Type | Description |
---|---|---|
Parameter itemStack | Type IItemStack | Description The stack containing the item that the predicate should match. |
Sets the maximum amount of items to max
.
If the amount had already some bounds specified, then the maximum value of the bound will be overwritten with the
value specified in max
. On the other hand, if the amount didn’t have any bounds set, the maximum is
set, leaving the lower end unbounded.
The maximum value is inclusive, meaning that a value that is equal to max
will pass the check.
Returns: This predicate for chaining.
Return Type: ItemPredicate
Parameter | Type | Description |
---|---|---|
Parameter max | Type int | Description The maximum value the amount should be. |
Sets the maximum damage of the item to max
.
If the damage had already some bounds specified, then the maximum value of the bound will be overwritten with the
value specified in max
. On the other hand, if the damage didn’t have any bounds set, the maximum is
set, leaving the lower end unbounded.
The maximum value is inclusive, meaning that a value that is equal to max
will pass the check.
Returns: This predicate for chaining.
Return Type: ItemPredicate
Parameter | Type | Description |
---|---|---|
Parameter max | Type int | Description The maximum value the damage should be. |
Sets the minimum amount of items to min
.
If the amount had already some bounds specified, then the minimum value of the bound will be overwritten with the
value specified in min
. On the other hand, if the amount didn’t have any bounds set, the minimum is
set, leaving the upper end unbounded.
The minimum value is inclusive, meaning that a value that is equal to min
will pass the check.
Returns: This predicate for chaining.
Return Type: ItemPredicate
Parameter | Type | Description |
---|---|---|
Parameter min | Type int | Description The minimum value the amount should be. |
Sets the minimum damage of the item to min
.
If the damage had already some bounds specified, then the minimum value of the bound will be overwritten with the
value specified in min
. On the other hand, if the damage didn’t have any bounds set, the minimum is
set, leaving the upper end unbounded.
The minimum value is inclusive, meaning that a value that is equal to min
will pass the check.
Returns: This predicate for chaining.
Return Type: ItemPredicate
Parameter | Type | Description |
---|---|---|
Parameter min | Type int | Description The minimum value the damage should be. |
Sets the potion effect that should be present on the target item.
Returns: This predicate for chaining.
Return Type: ItemPredicate
Parameter | Type | Description |
---|---|---|
Parameter potion | Type MCPotion | Description The potion effect. |
Sets both the minimum and maximum amount of items to min
and max
respectively.
If the amount had already some bounds specified, then they will be overwritten with the new values.
Both minimum and maximum values are inclusive, meaning that a value that is equal to either min
or max
will pass the check.
Returns: This predicate for chaining.
Return Type: ItemPredicate
Parameter | Type | Description |
---|---|---|
Parameter min | Type int | Description The minimum value the amount should be. |
Parameter max | Type int | Description The maximum value the amount should be. |
Sets both the minimum and maximum damage of the item to min
and max
respectively.
If the damage had already some bounds specified, then they will be overwritten with the new values.
Both minimum and maximum values are inclusive, meaning that a value that is equal to either min
or max
will pass the check.
Returns: This predicate for chaining.
Return Type: ItemPredicate
Parameter | Type | Description |
---|---|---|
Parameter min | Type int | Description The minimum value the damage should be. |
Parameter max | Type int | Description The maximum value the damage should be. |
Creates and adds a new EnchantmentPredicate to the list of predicates to match against the item’s stored enchantments.
The added predicate is simply added to the list. No validity checks are performed, meaning that there may be multiple predicates that target a single enchantment. In this case, they all need to match, thus they have to have compatible bounds.
Returns: This predicate for chaining.
Return Type: ItemPredicate
Parameter | Type | Description |
---|---|---|
Parameter builder | Type Consumer<EnchantmentPredicate> | Description A consumer that will be used to configure the EnchantmentPredicate. |
Creates and adds a new EnchantmentPredicate for the given MCEnchantment to the list of predicates to match against the item’s stored enchantments.
The predicate that will be configured is already configured to target the specified enchantment.
The added predicate is simply added to the list. No validity checks are performed, meaning that there may be multiple predicates that target a single enchantment. In this case, they all need to match, thus they have to have compatible bounds.
Returns: This predicate for chaining.
Return Type: ItemPredicate
Parameter | Type | Description |
---|---|---|
Parameter enchantment | Type MCEnchantment | Description The enchantment that should be checked. |
Parameter builder | Type Consumer<EnchantmentPredicate> | Description A consumer that will be used to configure the EnchantmentPredicate. |
Sets the MCTag<T> that this predicate should use for matching.
The predicate will successfully match only if the supplied item is contained within the given tag.
Specifying both a tag and an item to match against will make the tag take precedence over the item.
Returns: This predicate for chaining.
Return Type: ItemPredicate
Parameter | Type | Description |
---|---|---|
Parameter tag | Type MCTag<MCItemDefinition> | Description The tag the predicate should use for matching. |