public enum ByteCodeFramework extends java.lang.Enum<ByteCodeFramework>
| Enum Constant and Description |
|---|
Javassist |
| Modifier and Type | Method and Description |
|---|---|
static ByteCodeFramework |
getByteCodeFrameworkForMethod(java.lang.Class<?> testClass,
java.lang.reflect.Method method) |
static ByteCodeFramework |
getByteCodeFrameworkForTestClass(java.lang.Class<?> testClass) |
static ByteCodeFramework |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ByteCodeFramework[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ByteCodeFramework Javassist
public static ByteCodeFramework[] values()
for (ByteCodeFramework c : ByteCodeFramework.values()) System.out.println(c);
public static ByteCodeFramework 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 static ByteCodeFramework getByteCodeFrameworkForMethod(java.lang.Class<?> testClass, java.lang.reflect.Method method)
public static ByteCodeFramework getByteCodeFrameworkForTestClass(java.lang.Class<?> testClass)