Class ExactItemFilter

java.lang.Object
alexiil.mc.lib.attributes.item.filter.ExactItemFilter
All Implemented Interfaces:
ItemFilter, ReadableItemFilter

public final class ExactItemFilter extends Object implements ReadableItemFilter
An ItemFilter that only matches on a single Item.
  • Field Details

    • item

      public final net.minecraft.item.Item item
  • Constructor Details

    • ExactItemFilter

      public ExactItemFilter(net.minecraft.item.Item item)
  • Method Details

    • createFilter

      public static ReadableItemFilter createFilter(net.minecraft.item.ItemConvertible entry)
      Returns:
      Either ConstantItemFilter.NOTHING if ItemConvertible.asItem() returns Items.AIR, or an ExactItemFilter if it returns any other Item.
    • anyOf

      public static ReadableItemFilter anyOf(Collection<? extends net.minecraft.item.ItemConvertible> items)
    • anyOf

      public static ReadableItemFilter anyOf(net.minecraft.item.ItemConvertible[] items)
    • matches

      public boolean matches(net.minecraft.item.ItemStack stack)
      Description copied from interface: ItemFilter
      Checks to see if this filter matches the given stack. Note that this must not care about ItemStack.getCount(), except in the case where the stack is ItemStack.isEmpty(), which isn't expected to return a useful result.
      Specified by:
      matches in interface ItemFilter