public static enum IEventManager.StackBehavior extends java.lang.Enum<IEventManager.StackBehavior>
| Enum Constant and Description |
|---|
require
this behavior indicates that a new stack will be created.
|
stack
this behavior indicates that the frame should be pushed on the current stack.
|
| Modifier and Type | Method and Description |
|---|---|
static IEventManager.StackBehavior |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IEventManager.StackBehavior[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final IEventManager.StackBehavior stack
public static final IEventManager.StackBehavior require
public static IEventManager.StackBehavior[] values()
for (IEventManager.StackBehavior c : IEventManager.StackBehavior.values())
System.out.println(c);
public static IEventManager.StackBehavior 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