Uses of Class
org.objectweb.asm.SymbolTable.Entry
Packages that use SymbolTable.Entry
-
Uses of SymbolTable.Entry in org.objectweb.asm
Fields in org.objectweb.asm declared as SymbolTable.EntryModifier and TypeFieldDescriptionprivate SymbolTable.Entry[]
SymbolTable.entries
A hash set of all the entries in this SymbolTable (this includes the constant pool entries, the bootstrap method entries and the type table entries).(package private) SymbolTable.Entry
SymbolTable.Entry.next
Another entry (and so on recursively) having the same hash code (modulo the size ofSymbolTable.entries
) as this one.private SymbolTable.Entry[]
SymbolTable.typeTable
An ASM specific type table used to temporarily store internal names that will not necessarily be stored in the constant pool.Methods in org.objectweb.asm that return SymbolTable.EntryModifier and TypeMethodDescriptionprivate SymbolTable.Entry
SymbolTable.addConstantMemberReference
(int tag, String owner, String name, String descriptor) Adds a CONSTANT_Fieldref_info, CONSTANT_Methodref_info or CONSTANT_InterfaceMethodref_info to the constant pool of this symbol table.private SymbolTable.Entry
SymbolTable.get
(int hashCode) Returns the list of entries which can potentially have the given hash code.private SymbolTable.Entry
SymbolTable.put
(SymbolTable.Entry entry) Puts the given entry in theSymbolTable.entries
hash set.Methods in org.objectweb.asm with parameters of type SymbolTable.EntryModifier and TypeMethodDescriptionprivate void
SymbolTable.add
(SymbolTable.Entry entry) Adds the given entry in theSymbolTable.entries
hash set.private int
SymbolTable.addTypeInternal
(SymbolTable.Entry entry) Adds the given type Symbol toSymbolTable.typeTable
.private SymbolTable.Entry
SymbolTable.put
(SymbolTable.Entry entry) Puts the given entry in theSymbolTable.entries
hash set.