Package org.bukkit
Enum PortalType
- java.lang.Object
-
- java.lang.Enum<PortalType>
-
- org.bukkit.PortalType
-
- All Implemented Interfaces:
Serializable
,Comparable<PortalType>
public enum PortalType extends Enum<PortalType>
Represents various types of portals that can be made in a world.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PortalType
valueOf(String name)
Returns the enum constant of this type with the specified name.static PortalType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NETHER
public static final PortalType NETHER
This is a Nether portal, made of obsidian.
-
ENDER
public static final PortalType ENDER
This is an Ender portal.
-
CUSTOM
public static final PortalType CUSTOM
This is a custom Plugin portal.
-
-
Method Detail
-
values
public static PortalType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (PortalType c : PortalType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PortalType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-