001 package org.bukkit;
002
003 /**
004 * Represents various types of portals that can be made in a world.
005 */
006 public enum PortalType {
007
008 /**
009 * This is a Nether portal, made of obsidian.
010 */
011 NETHER,
012
013 /**
014 * This is an Ender portal.
015 */
016 ENDER,
017
018 /**
019 * This is a custom Plugin portal.
020 */
021 CUSTOM;
022 }