Serializable, Comparable<TestStackTraceFilter>public enum TestStackTraceFilter extends Enum<TestStackTraceFilter>
| Enum Constant | Description | 
|---|---|
| ENTRY_POINT | |
| GROOVY | |
| TRUNCATE | 
| Modifier and Type | Method | Description | 
|---|---|---|
| static TestStackTraceFilter | valueOf(String name) | Returns the enum constant of this type with the specified name. | 
| static TestStackTraceFilter[] | values() | Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final TestStackTraceFilter ENTRY_POINT
public static final TestStackTraceFilter TRUNCATE
public static final TestStackTraceFilter GROOVY
public static TestStackTraceFilter[] values()
for (TestStackTraceFilter c : TestStackTraceFilter.values()) System.out.println(c);
public static TestStackTraceFilter 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 null