Java org.springframework.asm ClassReader fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.asm ClassReader fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.asm ClassReader.

The text is from its open source code.

Field

intSKIP_DEBUG
A flag to skip the SourceFile, SourceDebugExtension, LocalVariableTable, LocalVariableTypeTable and LineNumberTable attributes.

Constructor

ClassReader(final byte[] classFile)
Constructs a new ClassReader object.
ClassReader(final InputStream inputStream)
Constructs a new ClassReader object.
ClassReader(final String className)
Constructs a new ClassReader object.

Method

voidaccept(final ClassVisitor classVisitor, final int parsingOptions)
Makes the given visitor visit the JVMS ClassFile structure passed to the constructor of this ClassReader .