Package me.clarius.sdk
Enum Class ImagingState
- All Implemented Interfaces:
Serializable
,Comparable<ImagingState>
,Constable
Imaging state.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionCannot image due to expired certificate.Probe started running or stopped due to change in charging status.Imaging is not ready, probe and application need to be loaded.Imaging is ready.Low bandwidth was detected, imaging parameters were adjusted.Probe started running or stopped due to change in motion sensor.Stopped imaging due to no patient contact detected.Stopped imaging due to poor Wi-Fi. -
Method Summary
Modifier and TypeMethodDescriptionstatic ImagingState
Returns the enum constant of this class with the specified name.static ImagingState[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
ImagingNotReady
Imaging is not ready, probe and application need to be loaded. -
ImagingReady
Imaging is ready. -
CertExpired
Cannot image due to expired certificate. -
PoorWifi
Stopped imaging due to poor Wi-Fi. -
NoContact
Stopped imaging due to no patient contact detected. -
ChargingChanged
Probe started running or stopped due to change in charging status. -
LowBandwidth
Low bandwidth was detected, imaging parameters were adjusted. -
MotionSensor
Probe started running or stopped due to change in motion sensor.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-