Class VideoDeviceCapabilities
java.lang.Object
com.dsi.ant.plugins.antplus.pcc.controls.defines.VideoDeviceCapabilities
Represents the capabilities of a video device
-
Field Summary
FieldsModifier and TypeFieldDescriptionbooleanIndicates whether video playback is supportedbooleanIndicates whether video recorder is supported -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic VideoDeviceCapabilitiesreadFromBundle(android.os.Bundle b) Creates an instance from the data saved in a bundle written bywriteToBundle(Bundle).voidwriteToBundle(android.os.Bundle b) Writes all the data in this object out to a bundle in a format that can be read byreadFromBundle(Bundle).
-
Field Details
-
videoPlaybackSupport
public boolean videoPlaybackSupportIndicates whether video playback is supported -
videoRecorderSupport
public boolean videoRecorderSupportIndicates whether video recorder is supported
-
-
Constructor Details
-
VideoDeviceCapabilities
public VideoDeviceCapabilities()
-
-
Method Details
-
readFromBundle
Creates an instance from the data saved in a bundle written bywriteToBundle(Bundle).- Parameters:
b- The bundle that contains the data.- Returns:
- A new
VideoDeviceCapabilitiesobject containing all the data from the bundle
-
writeToBundle
public void writeToBundle(android.os.Bundle b) Writes all the data in this object out to a bundle in a format that can be read byreadFromBundle(Bundle).- Parameters:
b- The bundle to write the data to.
-