public enum PostOrder extends java.lang.Enum<PostOrder>
EventSubscriber should receive events.| Enum Constant and Description |
|---|
EARLY
Marks that the subscriber should be called before
normal subscribers. |
FIRST
Marks that the subscriber should be called first, before all other subscribers.
|
LAST
Marks that the subscriber should be called last, after all other subscribers.
|
LATE
Marks that the subscriber should be called after
normal subscribers. |
NORMAL
Marks that the subscriber should be called with no special priority.
|
| Modifier and Type | Method and Description |
|---|---|
static PostOrder |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PostOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PostOrder FIRST
public static final PostOrder EARLY
normal subscribers.public static final PostOrder NORMAL
public static final PostOrder LATE
normal subscribers.public static final PostOrder LAST
public static PostOrder[] values()
for (PostOrder c : PostOrder.values()) System.out.println(c);
public static PostOrder 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 null