|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Event.Importance>
org.xwiki.eventstream.Event.Importance
public static enum Event.Importance
The importance of an event.
Enum Constant Summary | |
---|---|
BACKGROUND
An event of very low importance in the current event group, usually a side effect of another event. |
|
CRITICAL
A critical event that signals a major change or problem in the wiki. |
|
MAJOR
An important event that stands out in the event stream. |
|
MEDIUM
The default priority for events. |
|
MINOR
An event of little importance, not relevant for most users. |
Method Summary | |
---|---|
static Event.Importance |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Event.Importance[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final Event.Importance BACKGROUND
public static final Event.Importance MINOR
public static final Event.Importance MEDIUM
public static final Event.Importance MAJOR
public static final Event.Importance CRITICAL
Method Detail |
---|
public static Event.Importance[] values()
for (Event.Importance c : Event.Importance.values()) System.out.println(c);
public static Event.Importance valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |