private static enum TestRunner.TestRunnerExitCodes extends Enum<TestRunner.TestRunnerExitCodes>
TestRunner.| Enum Constant and Description |
|---|
BAD_JDBC_URL |
FAILED_TESTS |
MISSING_DRIVER_CLASS |
NO_SUCH_DRIVER |
NORMAL |
TEST_CASE_INSTANTIATION |
| Modifier and Type | Method and Description |
|---|---|
static TestRunner.TestRunnerExitCodes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TestRunner.TestRunnerExitCodes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TestRunner.TestRunnerExitCodes NORMAL
public static final TestRunner.TestRunnerExitCodes BAD_JDBC_URL
public static final TestRunner.TestRunnerExitCodes TEST_CASE_INSTANTIATION
public static final TestRunner.TestRunnerExitCodes NO_SUCH_DRIVER
public static final TestRunner.TestRunnerExitCodes FAILED_TESTS
public static final TestRunner.TestRunnerExitCodes MISSING_DRIVER_CLASS
public static TestRunner.TestRunnerExitCodes[] values()
for (TestRunner.TestRunnerExitCodes c : TestRunner.TestRunnerExitCodes.values()) System.out.println(c);
public static TestRunner.TestRunnerExitCodes 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 © 2012–2018 The Apache Software Foundation. All rights reserved.