Class DeviceVitalsCollectOptions

java.lang.Object
com.hp.lft.sdk.mobile.DeviceVitalsCollectOptions

public class DeviceVitalsCollectOptions extends Object
Defines which device vitals should be collected.
  • Constructor Details

    • DeviceVitalsCollectOptions

      public DeviceVitalsCollectOptions()
  • Method Details

    • isCollectCPU

      public boolean isCollectCPU()
      Indicates whether to collect the device CPU usage.
      Returns:
      true if device CPU usage should be collected.
    • setCollectCPU

      public DeviceVitalsCollectOptions setCollectCPU(boolean collectCPU)
      Sets whether to collect the device CPU usage.
      Parameters:
      collectCPU - true if device CPU usage should be collected.
      Returns:
      the DeviceVitalsCollectOptions instance with the updated state (builder pattern).
    • isCollectMemory

      public boolean isCollectMemory()
      Indicates whether to collect the device memory usage.
      Returns:
      true if device memory usage should be collected.
    • setCollectMemory

      public DeviceVitalsCollectOptions setCollectMemory(boolean collectMemory)
      Sets whether to collect the device memory usage.
      Parameters:
      collectMemory - true if device memory usage should be collected.
      Returns:
      the DeviceVitalsCollectOptions instance with the updated state (builder pattern).
    • isCollectFreeMemory

      public boolean isCollectFreeMemory()
      Indicates whether to collect the device free memory.
      Returns:
      true if device free memory should be collected.
    • setCollectFreeMemory

      public DeviceVitalsCollectOptions setCollectFreeMemory(boolean collectFreeMemory)
      Sets whether to collect the device free memory.
      Parameters:
      collectFreeMemory - true if device free memory should be collected.
      Returns:
      the DeviceVitalsCollectOptions instance with the updated state (builder pattern).
    • all

      public static DeviceVitalsCollectOptions all()
      Returns a new Instance of DeviceVitalsCollectOptions with all collection options set to true.
      Returns:
      a new Instance of DeviceVitalsCollectOptions with all collection options set to true.
    • none

      public static DeviceVitalsCollectOptions none()
      Returns a new Instance of DeviceVitalsCollectOptions with all collection options set to false.
      Returns:
      a new Instance of DeviceVitalsCollectOptions with all collection options set to false.