Package net.bytebuddy.utility
Class OpenedClassReader
- java.lang.Object
-
- net.bytebuddy.utility.OpenedClassReader
-
public class OpenedClassReader extends java.lang.ObjectAClassReaderthat does not apply a class file version check if thenet.bytebuddy.experimentalproperty is set.
-
-
Field Summary
Fields Modifier and Type Field Description static intASM_APIIndicates the ASM API version that is used throughout Byte Buddy.static booleanEXPERIMENTALtrueif Byte Buddy is executed in experimental mode.static java.lang.StringEXPERIMENTAL_PROPERTYIndicates that Byte Buddy should not validate the maximum supported class file version.
-
Constructor Summary
Constructors Modifier Constructor Description privateOpenedClassReader()Not intended for construction.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static org.objectweb.asm.ClassReaderof(byte[] binaryRepresentation)Creates a class reader for the given binary representation of a class file.
-
-
-
Field Detail
-
EXPERIMENTAL_PROPERTY
public static final java.lang.String EXPERIMENTAL_PROPERTY
Indicates that Byte Buddy should not validate the maximum supported class file version.- See Also:
- Constant Field Values
-
EXPERIMENTAL
public static final boolean EXPERIMENTAL
trueif Byte Buddy is executed in experimental mode.
-
ASM_API
public static final int ASM_API
Indicates the ASM API version that is used throughout Byte Buddy.
-
-