public enum LifecycleScope extends 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(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(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 © 2011–2015 Carrot Search s.c.. All rights reserved.