|
Neo4j Community | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<KernelEventHandler.ExecutionOrder>
org.neo4j.graphdb.event.KernelEventHandler.ExecutionOrder
public static enum KernelEventHandler.ExecutionOrder
Represents the order of execution between two event handlers, if one
handler should be executed BEFORE
,
AFTER
another handler, or if it
DOESNT_MATTER
.
Enum Constant Summary | |
---|---|
AFTER
Says that the event handler must be executed after the compared event handler. |
|
BEFORE
Says that the event handler must be executed before the compared event handler. |
|
DOESNT_MATTER
Says that it doesn't matter in which order the event handler is executed in comparison to another event handler. |
Method Summary | |
---|---|
static KernelEventHandler.ExecutionOrder |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static KernelEventHandler.ExecutionOrder[] |
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 KernelEventHandler.ExecutionOrder BEFORE
public static final KernelEventHandler.ExecutionOrder AFTER
public static final KernelEventHandler.ExecutionOrder DOESNT_MATTER
Method Detail |
---|
public static KernelEventHandler.ExecutionOrder[] values()
for (KernelEventHandler.ExecutionOrder c : KernelEventHandler.ExecutionOrder.values()) System.out.println(c);
public static KernelEventHandler.ExecutionOrder 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
|
Neo4j Community | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |