public static enum ESIntegTestCase.Scope extends java.lang.Enum<ESIntegTestCase.Scope>
ESIntegTestCase.ClusterScope annotations on ESIntegTestCase subclasses.| Enum Constant and Description |
|---|
SUITE
A cluster shared across all method in a single test suite
|
TEST
A test exclusive test cluster
|
| Modifier and Type | Method and Description |
|---|---|
static ESIntegTestCase.Scope |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ESIntegTestCase.Scope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ESIntegTestCase.Scope SUITE
public static final ESIntegTestCase.Scope TEST
public static ESIntegTestCase.Scope[] values()
for (ESIntegTestCase.Scope c : ESIntegTestCase.Scope.values()) System.out.println(c);
public static ESIntegTestCase.Scope 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