Uses of Class
org.apache.bcel.classfile.StackMapType
-
Packages that use StackMapType Package Description org.apache.bcel.classfile Classes that describe the structure of a Java class file and a class file parser.org.apache.bcel.util Utility classes for the Apache Byte Code Engineering Library (BCEL), namely: Collection classes for JavaClass objects A converter for class files to HTML A tool to find instructions patterns via regular expressions A class to find classes as defined in the CLASSPATH A class loader that allows to create classes at run time -
-
Uses of StackMapType in org.apache.bcel.classfile
Fields in org.apache.bcel.classfile declared as StackMapType Modifier and Type Field Description static StackMapType[]StackMapType. EMPTY_ARRAYMethods in org.apache.bcel.classfile that return StackMapType Modifier and Type Method Description StackMapTypeStackMapType. copy()StackMapType[]StackMapEntry. getTypesOfLocals()StackMapType[]StackMapEntry. getTypesOfStackItems()Methods in org.apache.bcel.classfile with parameters of type StackMapType Modifier and Type Method Description voidStackMapEntry. setTypesOfLocals(StackMapType[] types)voidStackMapEntry. setTypesOfStackItems(StackMapType[] types)voidDescendingVisitor. visitStackMapType(StackMapType var)Visits aStackMapTypeobject.voidEmptyVisitor. visitStackMapType(StackMapType obj)Visits aStackMapTypeobject.default voidVisitor. visitStackMapType(StackMapType obj)Visits aStackMapTypeobject.Constructors in org.apache.bcel.classfile with parameters of type StackMapType Constructor Description StackMapEntry(int byteCodeOffset, int numberOfLocals, StackMapType[] typesOfLocals, int numberOfStackItems, StackMapType[] typesOfStackItems, ConstantPool constantPool)Deprecated.Since 6.0, useStackMapEntry(int, int, StackMapType[], StackMapType[], ConstantPool)insteadStackMapEntry(int tag, int byteCodeOffset, StackMapType[] typesOfLocals, StackMapType[] typesOfStackItems, ConstantPool constantPool)Create an instance -
Uses of StackMapType in org.apache.bcel.util
Methods in org.apache.bcel.util with parameters of type StackMapType Modifier and Type Method Description voidBCELifier. visitStackMapType(StackMapType stackMapType)Visits aStackMapTypeobject.
-