Class GPUDevice

java.lang.Object
io.webfolder.cdp.type.systeminfo.GPUDevice

public class GPUDevice extends Object
Describes a single graphics processor (GPU).
  • Constructor Details

    • GPUDevice

      public GPUDevice()
  • Method Details

    • getVendorId

      public Double getVendorId()
      PCI ID of the GPU vendor, if available; 0 otherwise.
    • setVendorId

      public void setVendorId(Double vendorId)
      PCI ID of the GPU vendor, if available; 0 otherwise.
    • getDeviceId

      public Double getDeviceId()
      PCI ID of the GPU device, if available; 0 otherwise.
    • setDeviceId

      public void setDeviceId(Double deviceId)
      PCI ID of the GPU device, if available; 0 otherwise.
    • getSubSysId

      public Double getSubSysId()
      Sub sys ID of the GPU, only available on Windows.
    • setSubSysId

      public void setSubSysId(Double subSysId)
      Sub sys ID of the GPU, only available on Windows.
    • getRevision

      public Double getRevision()
      Revision of the GPU, only available on Windows.
    • setRevision

      public void setRevision(Double revision)
      Revision of the GPU, only available on Windows.
    • getVendorString

      public String getVendorString()
      String description of the GPU vendor, if the PCI ID is not available.
    • setVendorString

      public void setVendorString(String vendorString)
      String description of the GPU vendor, if the PCI ID is not available.
    • getDeviceString

      public String getDeviceString()
      String description of the GPU device, if the PCI ID is not available.
    • setDeviceString

      public void setDeviceString(String deviceString)
      String description of the GPU device, if the PCI ID is not available.
    • getDriverVendor

      public String getDriverVendor()
      String description of the GPU driver vendor.
    • setDriverVendor

      public void setDriverVendor(String driverVendor)
      String description of the GPU driver vendor.
    • getDriverVersion

      public String getDriverVersion()
      String description of the GPU driver version.
    • setDriverVersion

      public void setDriverVersion(String driverVersion)
      String description of the GPU driver version.
    • toString

      public String toString()
      Overrides:
      toString in class Object