public static enum KernelEventHandler.ExecutionOrder extends Enum<KernelEventHandler.ExecutionOrder>
BEFORE,
 AFTER another handler, or if it
 DOESNT_MATTER.| Enum Constant and Description | 
|---|
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. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
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. 
 | 
public static final KernelEventHandler.ExecutionOrder BEFORE
public static final KernelEventHandler.ExecutionOrder AFTER
public static final KernelEventHandler.ExecutionOrder DOESNT_MATTER
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 nameNullPointerException - if the argument is nullCopyright © 2002–2016 The Neo4j Graph Database Project. All rights reserved.