Package org.bukkit.event
Enum Class EventPriority
- All Implemented Interfaces:
Serializable
,Comparable<EventPriority>
,Constable
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionEvent call is of high importanceEvent call is critical and must have the final say in what happens to the eventEvent call is of low importanceEvent call is of very low importance and should be run first, to allow other plugins to further customise the outcomeEvent is listened to purely for monitoring the outcome of an event.Event call is neither important nor unimportant, and may be run normally -
Method Summary
Modifier and TypeMethodDescriptionint
getSlot()
static EventPriority
Returns the enum constant of this class with the specified name.static EventPriority[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
LOWEST
Event call is of very low importance and should be run first, to allow other plugins to further customise the outcome -
LOW
Event call is of low importance -
NORMAL
Event call is neither important nor unimportant, and may be run normally -
HIGH
Event call is of high importance -
HIGHEST
Event call is critical and must have the final say in what happens to the event -
MONITOR
Event is listened to purely for monitoring the outcome of an event.No modifications to the event should be made under this priority
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-
getSlot
public int getSlot()
-