public enum StackFrameFilterResult extends Enum<StackFrameFilterResult>
StackFrameFilter.process(StackFrame).| Enum Constant and Description |
|---|
DROP
Drop this frame
|
DROP_REMAINING
Include this frame, but skip any remaining frames in this cause
|
INCLUDE
Include this frame
|
TERMINATE
Stops processing any remaining frames or causes
|
TERMINATE_AFTER
Include this frame, then stop processing any remaining frames or causes
|
| Modifier and Type | Method and Description |
|---|---|
static StackFrameFilterResult |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StackFrameFilterResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StackFrameFilterResult INCLUDE
public static final StackFrameFilterResult DROP
public static final StackFrameFilterResult DROP_REMAINING
public static final StackFrameFilterResult TERMINATE
public static final StackFrameFilterResult TERMINATE_AFTER
public static StackFrameFilterResult[] values()
for (StackFrameFilterResult c : StackFrameFilterResult.values()) System.out.println(c);
public static StackFrameFilterResult 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 © 2008-2013 Seam Framework. All Rights Reserved.