Uses of Class
org.apache.bcel.classfile.StackMapType
-
Packages that use StackMapType Package Description org.apache.bcel.classfile This package contains the classes that describe the structure of a Java class file and a class file parser. -
-
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_ARRAY
private StackMapType[]
StackMapEntry. typesOfLocals
private StackMapType[]
StackMapEntry. typesOfStackItems
Methods in org.apache.bcel.classfile that return StackMapType Modifier and Type Method Description StackMapType
StackMapType. copy()
StackMapType[]
StackMapEntry. getTypesOfLocals()
StackMapType[]
StackMapEntry. getTypesOfStackItems()
Methods in org.apache.bcel.classfile with parameters of type StackMapType Modifier and Type Method Description void
StackMapEntry. setTypesOfLocals(StackMapType[] types)
void
StackMapEntry. setTypesOfStackItems(StackMapType[] types)
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
-