public enum ProjectTestsMode extends Enum<ProjectTestsMode>
| Enum Constant and Description |
|---|
WITH_TESTS |
WITHOUT_DEPENDENCIES_TESTS |
WITHOUT_TESTS |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static ProjectTestsMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProjectTestsMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProjectTestsMode WITHOUT_TESTS
public static final ProjectTestsMode WITH_TESTS
public static final ProjectTestsMode WITHOUT_DEPENDENCIES_TESTS
public static ProjectTestsMode[] values()
for (ProjectTestsMode c : ProjectTestsMode.values()) System.out.println(c);
public static ProjectTestsMode 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 nullpublic String toString()
toString in class Enum<ProjectTestsMode>