Enum Constant Summary
Enum Constants
Should be used for events that should execute relatively quickly, like issue events and webhooks.
This is reserved for events that require processing as fast as possible such as manual executions
This is reserved for branches that should be executed inline
Events that aren't time sensitive should execute with low priority (e.g.
This is reserved for system events of the lowest priority that shouldn't affect user facing rules.
Method Summary
All Methods Static Methods Instance Methods Concrete Methods
int
Returns the enum constant of this class with the specified name.
Returns an array containing the constants of this enum class, in
the order they are declared.
Methods inherited from class java.lang.Enum
clone , compareTo , describeConstable , equals , finalize , getDeclaringClass , hashCode , name , ordinal , toString , valueOf
Enum Constant Details
INLINE
This is reserved for branches that should be executed inline
HIGH
Should be used for events that should execute relatively quickly, like issue events and webhooks.
LOW
Events that aren't time sensitive should execute with low priority (e.g. scheduled rule executions)
SYSTEM_BATCH
public static final Priority SYSTEM_BATCH
This is reserved for system events of the lowest priority that shouldn't affect user facing rules.
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 name
NullPointerException - if the argument is null
getIntValue
public int getIntValue ()