Class GPUDevice
- java.lang.Object
-
- org.openqa.selenium.devtools.systeminfo.model.GPUDevice
-
public class GPUDevice extends java.lang.Object
Describes a single graphics processor (GPU).
-
-
Constructor Summary
Constructors Constructor Description GPUDevice(java.lang.Number vendorId, java.lang.Number deviceId, java.lang.String vendorString, java.lang.String deviceString, java.lang.String driverVendor, java.lang.String driverVersion)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Number
getDeviceId()
PCI ID of the GPU device, if available; 0 otherwise.java.lang.String
getDeviceString()
String description of the GPU device, if the PCI ID is not available.java.lang.String
getDriverVendor()
String description of the GPU driver vendor.java.lang.String
getDriverVersion()
String description of the GPU driver version.java.lang.Number
getVendorId()
PCI ID of the GPU vendor, if available; 0 otherwise.java.lang.String
getVendorString()
String description of the GPU vendor, if the PCI ID is not available.
-
-
-
Method Detail
-
getVendorId
public java.lang.Number getVendorId()
PCI ID of the GPU vendor, if available; 0 otherwise.
-
getDeviceId
public java.lang.Number getDeviceId()
PCI ID of the GPU device, if available; 0 otherwise.
-
getVendorString
public java.lang.String getVendorString()
String description of the GPU vendor, if the PCI ID is not available.
-
getDeviceString
public java.lang.String getDeviceString()
String description of the GPU device, if the PCI ID is not available.
-
getDriverVendor
public java.lang.String getDriverVendor()
String description of the GPU driver vendor.
-
getDriverVersion
public java.lang.String getDriverVersion()
String description of the GPU driver version.
-
-