public enum InjectableParameter extends 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(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(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 © 2024. All rights reserved.