public enum AdapterMode extends java.lang.Enum<AdapterMode>
| Enum Constant and Description |
|---|
NEW_TEST_RUN |
RUN_ALL_TESTS |
USE_FILTER |
| Modifier and Type | Method and Description |
|---|---|
int |
getValue() |
static AdapterMode |
valueOf(int value) |
static AdapterMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AdapterMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AdapterMode USE_FILTER
public static final AdapterMode RUN_ALL_TESTS
public static final AdapterMode NEW_TEST_RUN
public static AdapterMode[] values()
for (AdapterMode c : AdapterMode.values()) System.out.println(c);
public static AdapterMode 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 nullpublic int getValue()
public static AdapterMode valueOf(int value)