public enum ByteCodeFramework extends Enum<ByteCodeFramework>
Enum Constant and Description |
---|
Javassist |
Modifier and Type | Method and Description |
---|---|
static ByteCodeFramework |
getByteCodeFrameworkForMethod(Class<?> testClass,
Method method) |
static ByteCodeFramework |
getByteCodeFrameworkForTestClass(Class<?> testClass) |
static ByteCodeFramework |
valueOf(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(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 nullpublic static ByteCodeFramework getByteCodeFrameworkForMethod(Class<?> testClass, Method method)
public static ByteCodeFramework getByteCodeFrameworkForTestClass(Class<?> testClass)
Copyright © 2019. All rights reserved.