Examples of InvertedStackFilter


Examples of forestry.core.inventory.filters.InvertedStackFilter

   * @param dest
   * @param filer an ItemStack[] to exclude
   * @return null if nothing was moved, the stack moved otherwise
   */
  public static ItemStack moveOneItemExcept(IInventory source, IInventory dest, ItemStack... filters) {
    return moveOneItem(source, dest, new InvertedStackFilter(new ArrayStackFilter(filters)));
  }
View Full Code Here

Examples of mods.railcraft.common.util.inventory.filters.InvertedStackFilter

     * @param dest
     * @param filters an ItemStack[] to exclude
     * @return null if nothing was moved, the stack moved otherwise
     */
    public static ItemStack moveOneItemExcept(IInventory source, IInventory dest, ItemStack... filters) {
        return moveOneItem(source, dest, new InvertedStackFilter(new ArrayStackFilter(filters)));
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.