Class Module
- java.lang.Object
-
- org.openqa.selenium.devtools.memory.model.Module
-
public class Module extends java.lang.Object
Executable 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.String
getBaseAddress()
Base address where the module is loaded into memory.java.lang.String
getName()
Name of the module.java.lang.Number
getSize()
Size of the module in bytes.java.lang.String
getUuid()
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.
-
-