public enum InjectableParameter extends java.lang.Enum<InjectableParameter>
Modifier and Type | Class and Description |
---|---|
static class |
InjectableParameter.Assistant
convenience means to add and remove injectables.
|
Enum Constant and Description |
---|
CURRENT_TEST_METHOD |
ITEST_CONTEXT |
ITEST_RESULT |
XML_TEST |
Modifier and Type | Method and Description |
---|---|
static InjectableParameter |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static InjectableParameter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InjectableParameter CURRENT_TEST_METHOD
public static final InjectableParameter ITEST_CONTEXT
public static final InjectableParameter ITEST_RESULT
public static final InjectableParameter XML_TEST
public static InjectableParameter[] values()
for (InjectableParameter c : InjectableParameter.values()) System.out.println(c);
public static InjectableParameter 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 null