Module openj9.dtfj
Package com.ibm.j9ddr.vm29.j9
Interface IHashTable<StructType extends AbstractPointer>
-
- All Known Implementing Classes:
HashTable
,HashTable_V1
,JVMTIObjectTagTable
,ModuleHashTable
,MonitorTable
,PackageHashTable
public interface IHashTable<StructType extends AbstractPointer>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
getCount()
Returns the number of elements in a given pool.String
getTableName()
Returns the name of the tableIterator<StructType>
iterator()
Returns an iterator over the elements in the pool
-
-
-
Method Detail
-
getTableName
String getTableName()
Returns the name of the table- Returns:
- the number of elements in the pool
-
getCount
long getCount()
Returns the number of elements in a given pool.- Returns:
- the number of elements in the pool
-
iterator
Iterator<StructType> iterator()
Returns an iterator over the elements in the pool- Returns:
- an Iterator
-
-