Package com.skytix.velocity.scheduler
Enum DefaultPriority
- java.lang.Object
-
- java.lang.Enum<DefaultPriority>
-
- com.skytix.velocity.scheduler.DefaultPriority
-
- All Implemented Interfaces:
Priority,java.io.Serializable,java.lang.Comparable<DefaultPriority>
public enum DefaultPriority extends java.lang.Enum<DefaultPriority> implements Priority
-
-
Enum Constant Summary
Enum Constants Enum Constant Description STANDARD
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DefaultPriorityvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static DefaultPriority[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STANDARD
public static final DefaultPriority STANDARD
-
-
Method Detail
-
values
public static DefaultPriority[] 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 (DefaultPriority c : DefaultPriority.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DefaultPriority valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-