Class MediaDiagnosticValues
- Object
-
- MediaDiagnosticValues
-
public final class MediaDiagnosticValues extends Object
Represents an object where all the latest diagnostics values for media diagnostic.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
finalize()
Called by the garbage collector on an object when garbage collection determines that there are no more references to the object.Date
getLastUpdatedAt()
Last updated time of any diagnostic property.Boolean
isCameraFrozen()
Get value for `CAMERA_FREEZE` if available.Boolean
isCameraPermissionDenied()
Get value for `CAMERA_PERMISSION_DENIED` if available.Boolean
isCameraStartFailed()
Get value for `CAMERA_START_FAILED` if available.Boolean
isCameraStartTimedOut()
Get value for `CAMERA_START_TIMED_OUT` if available.Boolean
isMicrophoneBusy()
Get value for `MICROPHONE_NOT_FUNCTIONING_DEVICE_IN_USE` if available.Boolean
isMicrophoneMutedUnexpectedly()
Get value for `MICROPHONE_MUTED_UNEXPECTEDLY` if available.Boolean
isMicrophoneNotFunctioning()
Get value for `MICROPHONE_NOT_FUNCTIONING` if available.Boolean
isNoMicrophoneDevicesAvailable()
Get value for `NO_MICROPHONE_DEVICES_ENUMERATED` if available.Boolean
isNoSpeakerDevicesAvailable()
Get value for `NO_SPEAKER_DEVICES_ENUMERATED` if available.Boolean
isSpeakerBusy()
Get value for `SPEAKER_NOT_FUNCTIONING` if available.Boolean
isSpeakerMuted()
Get value for `SPEAKER_MUTED` if available.Boolean
isSpeakerNotFunctioning()
Get value for `SPEAKER_NOT_FUNCTIONING` if available.Boolean
isSpeakerVolumeZero()
Get value for `SPEAKER_VOLUME_IS_ZERO` if available.Boolean
isSpeakingWhileMicrophoneIsMuted()
Get value for `SPEAKING_WHILE_MICROPHONE_IS_MUTED` if available.
-
-
-
Method Detail
-
finalize
protected void finalize()
Called by the garbage collector on an object when garbage collection determines that there are no more references to the object.- Overrides:
finalize
in classObject
-
getLastUpdatedAt
public Date getLastUpdatedAt()
Last updated time of any diagnostic property.
-
isSpeakerNotFunctioning
public Boolean isSpeakerNotFunctioning()
Get value for `SPEAKER_NOT_FUNCTIONING` if available. Otherwise `null` is returned.
-
isSpeakerBusy
public Boolean isSpeakerBusy()
Get value for `SPEAKER_NOT_FUNCTIONING` if available. Otherwise `null` is returned.
-
isSpeakerMuted
public Boolean isSpeakerMuted()
Get value for `SPEAKER_MUTED` if available. Otherwise `null` is returned.
-
isSpeakerVolumeZero
public Boolean isSpeakerVolumeZero()
Get value for `SPEAKER_VOLUME_IS_ZERO` if available. Otherwise `null` is returned.
-
isNoSpeakerDevicesAvailable
public Boolean isNoSpeakerDevicesAvailable()
Get value for `NO_SPEAKER_DEVICES_ENUMERATED` if available. Otherwise `null` is returned.
-
isSpeakingWhileMicrophoneIsMuted
public Boolean isSpeakingWhileMicrophoneIsMuted()
Get value for `SPEAKING_WHILE_MICROPHONE_IS_MUTED` if available. Otherwise `null` is returned.
-
isNoMicrophoneDevicesAvailable
public Boolean isNoMicrophoneDevicesAvailable()
Get value for `NO_MICROPHONE_DEVICES_ENUMERATED` if available. Otherwise `null` is returned.
-
isMicrophoneBusy
public Boolean isMicrophoneBusy()
Get value for `MICROPHONE_NOT_FUNCTIONING_DEVICE_IN_USE` if available. Otherwise `null` is returned.
-
isCameraFrozen
public Boolean isCameraFrozen()
Get value for `CAMERA_FREEZE` if available. Otherwise `null` is returned.
-
isCameraStartFailed
public Boolean isCameraStartFailed()
Get value for `CAMERA_START_FAILED` if available. Otherwise `null` is returned.
-
isCameraStartTimedOut
public Boolean isCameraStartTimedOut()
Get value for `CAMERA_START_TIMED_OUT` if available. Otherwise `null` is returned.
-
isMicrophoneNotFunctioning
public Boolean isMicrophoneNotFunctioning()
Get value for `MICROPHONE_NOT_FUNCTIONING` if available. Otherwise `null` is returned.
-
isMicrophoneMutedUnexpectedly
public Boolean isMicrophoneMutedUnexpectedly()
Get value for `MICROPHONE_MUTED_UNEXPECTEDLY` if available. Otherwise `null` is returned.
-
isCameraPermissionDenied
public Boolean isCameraPermissionDenied()
Get value for `CAMERA_PERMISSION_DENIED` if available. Otherwise `null` is returned.
-
-