Enum Constant and Description |
---|
LOMBOK |
MICRONAUT_DATA_PROCESSOR |
MICRONAUT_INJECT_JAVA |
Modifier and Type | Method and Description |
---|---|
int |
getOrder() |
static Priority |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Priority[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Priority LOMBOK
public static final Priority MICRONAUT_INJECT_JAVA
public static final Priority MICRONAUT_DATA_PROCESSOR
public static Priority[] values()
for (Priority c : Priority.values()) System.out.println(c);
public static Priority valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic int getOrder()