public enum LifecycleScope extends java.lang.Enum<LifecycleScope>
| Enum Constant and Description |
|---|
SUITE
A single suite (class), including all
AfterClass hooks. |
TEST
A single test case, including all
After hooks. |
| Modifier and Type | Method and Description |
|---|---|
static LifecycleScope |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LifecycleScope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LifecycleScope TEST
After hooks.public static final LifecycleScope SUITE
AfterClass hooks.public static LifecycleScope[] values()
for (LifecycleScope c : LifecycleScope.values()) System.out.println(c);
public static LifecycleScope 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 nullCopyright © 2011–2018 Carrot Search s.c.. All rights reserved.