public enum MethodKind extends java.lang.Enum<MethodKind>
Enum Constant and Description |
---|
CLEANUP |
CLEANUP_SPEC |
DATA_PROCESSOR |
DATA_PROVIDER |
FEATURE |
FEATURE_EXECUTION |
INITIALIZER |
ITERATION_EXECUTION |
SETUP |
SETUP_SPEC |
SHARED_INITIALIZER |
SPEC_EXECUTION |
Modifier and Type | Method and Description |
---|---|
boolean |
isCleanupMethod() |
boolean |
isFeatureScopedFixtureMethod() |
boolean |
isFixtureMethod() |
boolean |
isSetupMethod() |
boolean |
isSpecScopedFixtureMethod() |
static MethodKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MethodKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MethodKind INITIALIZER
public static final MethodKind SHARED_INITIALIZER
public static final MethodKind SETUP
public static final MethodKind CLEANUP
public static final MethodKind SETUP_SPEC
public static final MethodKind CLEANUP_SPEC
public static final MethodKind FEATURE
public static final MethodKind DATA_PROVIDER
public static final MethodKind DATA_PROCESSOR
public static final MethodKind SPEC_EXECUTION
public static final MethodKind FEATURE_EXECUTION
public static final MethodKind ITERATION_EXECUTION
public static MethodKind[] values()
for (MethodKind c : MethodKind.values()) System.out.println(c);
public static MethodKind 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 boolean isFixtureMethod()
public boolean isSetupMethod()
public boolean isCleanupMethod()
public boolean isFeatureScopedFixtureMethod()
public boolean isSpecScopedFixtureMethod()
Copyright © 2014. All rights reserved