Class Module
- java.lang.Object
-
- org.openqa.selenium.devtools.v101.memory.model.Module
-
public class Module extends java.lang.ObjectExecutable module information
-
-
Constructor Summary
Constructors Constructor Description Module(java.lang.String name, java.lang.String uuid, java.lang.String baseAddress, java.lang.Number size)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetBaseAddress()Base address where the module is loaded into memory.java.lang.StringgetName()Name of the module.java.lang.NumbergetSize()Size of the module in bytes.java.lang.StringgetUuid()UUID of the module.
-
-
-
Method Detail
-
getName
public java.lang.String getName()
Name of the module.
-
getUuid
public java.lang.String getUuid()
UUID of the module.
-
getBaseAddress
public java.lang.String getBaseAddress()
Base address where the module is loaded into memory. Encoded as a decimal or hexadecimal (0x prefixed) string.
-
getSize
public java.lang.Number getSize()
Size of the module in bytes.
-
-