Enum IEvent.Priority
- java.lang.Object
-
- java.lang.Enum<IEvent.Priority>
-
- io.jenkins.plugins.maplelabs.Events.interfaces.IEvent.Priority
-
- All Implemented Interfaces:
Serializable
,Comparable<IEvent.Priority>
- Enclosing interface:
- IEvent
public static enum IEvent.Priority extends Enum<IEvent.Priority>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IEvent.Priority
valueOf(String name)
Returns the enum constant of this type with the specified name.static IEvent.Priority[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LOW
public static final IEvent.Priority LOW
-
HIGH
public static final IEvent.Priority HIGH
-
NORMAL
public static final IEvent.Priority NORMAL
-
-
Method Detail
-
values
public static IEvent.Priority[] 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 (IEvent.Priority c : IEvent.Priority.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IEvent.Priority 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
-
-