/** * Copyright (c) 2011-2015, SpaceToad and the BuildCraft Team * http://www.mod-buildcraft.com * <p/> * BuildCraft is distributed under the terms of the Minecraft Mod Public * License 1.0, or MMPL. Please check the contents of the license located in * http://www.mod-buildcraft.com/MMPL-1.0.txt */ package buildcraft.core.lib.inventory; import net.minecraft.inventory.IInventory; import net.minecraft.inventory.ISidedInventory; import net.minecraftforge.common.util.ForgeDirection; import buildcraft.api.core.IInvSlot; public final class InventoryIterator { /** * Deactivate constructor */ private InventoryIterator() { } public static Iterable<IInvSlot> getIterable(IInventory inv) { return getIterable(inv, ForgeDirection.UNKNOWN); } /** * Returns an Iterable object for the specified side of the inventory. * * @param inv * @param side * @return Iterable */ public static Iterable<IInvSlot> getIterable(IInventory inv, ForgeDirection side) { if (inv instanceof ISidedInventory) { return new InventoryIteratorSided((ISidedInventory) inv, side); } return new InventoryIteratorSimple(inv); } }