Package com.hp.lft.sdk.mobile
Class DeviceVitalsCollectOptions
java.lang.Object
com.hp.lft.sdk.mobile.DeviceVitalsCollectOptions
Defines which device vitals should be collected.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic DeviceVitalsCollectOptions
all()
Returns a new Instance ofDeviceVitalsCollectOptions
with all collection options set to true.boolean
Indicates whether to collect the device CPU usage.boolean
Indicates whether to collect the device free memory.boolean
Indicates whether to collect the device memory usage.static DeviceVitalsCollectOptions
none()
Returns a new Instance ofDeviceVitalsCollectOptions
with all collection options set to false.setCollectCPU
(boolean collectCPU) Sets whether to collect the device CPU usage.setCollectFreeMemory
(boolean collectFreeMemory) Sets whether to collect the device free memory.setCollectMemory
(boolean collectMemory) Sets whether to collect the device memory usage.
-
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
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
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
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
Returns a new Instance ofDeviceVitalsCollectOptions
with all collection options set to true.- Returns:
- a new Instance of
DeviceVitalsCollectOptions
with all collection options set to true.
-
none
Returns a new Instance ofDeviceVitalsCollectOptions
with all collection options set to false.- Returns:
- a new Instance of
DeviceVitalsCollectOptions
with all collection options set to false.
-