001    package org.bukkit.event.inventory;
002    
003    /**
004     * Represents the effect of a drag that will be applied to an Inventory in an
005     * InventoryDragEvent.
006     */
007    public enum DragType {
008        /**
009         * One item from the cursor is placed in each selected slot.
010         */
011        SINGLE,
012        /**
013         * The cursor is split evenly across all selected slots, not to exceed the
014         * Material's max stack size, with the remainder going to the cursor.
015         */
016        EVEN,
017    }