public static enum TestUtils.Verbosity extends Enum<TestUtils.Verbosity>
Enum Constant and Description |
---|
QUIET
Completely quiet
|
TEST_METHOD
Output test method entry and exit
|
VERBOSE
Output all
|
Modifier and Type | Method and Description |
---|---|
static TestUtils.Verbosity |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TestUtils.Verbosity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TestUtils.Verbosity QUIET
public static final TestUtils.Verbosity TEST_METHOD
public static final TestUtils.Verbosity VERBOSE
public static TestUtils.Verbosity[] values()
for (TestUtils.Verbosity c : TestUtils.Verbosity.values()) System.out.println(c);
public static TestUtils.Verbosity 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 © 2014–2022 Eclipse Foundation. All rights reserved.