public enum Help extends Enum<Help>
Enum Constant and Description |
---|
BAD_FILTER |
FAILING_TESTS |
NO_JUNIT |
NO_JUNIT_EXCLUDE_RUNNERS |
NO_LINE_NUMBERS |
NO_MUTATIONS_FOUND |
NO_SOURCE_FILE |
NO_TEST_LIBRARY |
UNKNOWN_MUTATOR |
WRONG_JUNIT_VERSION |
Modifier and Type | Method and Description |
---|---|
String |
format(Object... params) |
String |
toString() |
static Help |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Help[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Help NO_MUTATIONS_FOUND
public static final Help WRONG_JUNIT_VERSION
public static final Help FAILING_TESTS
public static final Help NO_JUNIT
public static final Help NO_SOURCE_FILE
public static final Help NO_LINE_NUMBERS
public static final Help NO_TEST_LIBRARY
public static final Help BAD_FILTER
public static final Help UNKNOWN_MUTATOR
public static final Help NO_JUNIT_EXCLUDE_RUNNERS
public static Help[] values()
for (Help c : Help.values()) System.out.println(c);
public static Help 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 © 2021 org.pitest. All rights reserved.