Package org.bukkit.event
Enum EventPriority
- All Implemented Interfaces:
Serializable
,Comparable<EventPriority>
,Constable
public enum EventPriority extends Enum<EventPriority>
Represents an event's priority in execution
-
Nested Class Summary
-
Enum Constant Summary
Enum Constants Enum Constant Description HIGH
Event call is of high importanceHIGHEST
Event call is critical and must have the final say in what happens to the eventLOW
Event call is of low importanceLOWEST
Event call is of very low importance and should be ran first, to allow other plugins to further customise the outcomeMONITOR
Event is listened to purely for monitoring the outcome of an event.NORMAL
Event call is neither important nor unimportant, and may be ran normally -
Method Summary
Modifier and Type Method Description int
getSlot()
static EventPriority
valueOf(String name)
Returns the enum constant of this type with the specified name.static EventPriority[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
LOWEST
Event call is of very low importance and should be ran 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 ran 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 type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-
getSlot
public int getSlot()
-