001    package org.bukkit;
002    
003    /**
004     * Represents the different types of skulls.
005     */
006    public enum SkullType {
007        SKELETON,
008        WITHER,
009        ZOMBIE,
010        PLAYER,
011        CREEPER;
012    }