Enum Class Param

java.lang.Object
java.lang.Enum<Param>
me.clarius.sdk.Param
All Implemented Interfaces:
Serializable, Comparable<Param>, Constable

public enum Param extends Enum<Param>
Imaging parameters.
  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.Enum

    Enum.EnumDesc<E extends Enum<E>>
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    Auto focus enable (default on all applications).
    Auto gain enable (default on for most applications).
    Chroma map enable (default off).
    Color/power gain in percent (default 50%).
    Color map invert (default off - red towards probe, blue away from probe).
    Color/power pulse repetition frequency in kHz (default dependent on application).
    Color/power steering angle in degrees (available on linear probes, default dependent on application).
    Contrast in percent (default 50%).
    Read only velocity range in [cm/s] if the system is operating in a Doppler mode based on the current PRF programmed (returns 0 if not in a doppler mode).
    Eco mode enable (default off).
    Extended FOV Imaging enable (available on linear probes, default off for most applications).
    Focus depth in cm (applied when auto focus turned off).
    Gain in percent (default 50%).
    Imaging depth in cm (default dependent on application).
    IMU streaming enable (default off).
    Needle enhance side (default 0 - LED side).
    Penetration mode enable (default off).
    Pulsed wave Doppler gain in [percent] (default 50%).
    Pulsed wave Doppler pulse repetition frequency in [kHz] (default dependent on application).
    Pulsed wave Doppler steering angle in [degrees] (available on linear probes, default dependent on application).
    Raw data buffering enable (default off).
    RF streaming enable (default on).
    Smooth range in percent (default 50%).
    Opacity of the strain image overlay (default 50%).
    Sync pulse enable (default off).
  • Method Summary

    Modifier and Type
    Method
    Description
    static Param
    Returns the enum constant of this class with the specified name.
    static Param[]
    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

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • ImageDepth

      public static final Param ImageDepth
      Imaging depth in cm (default dependent on application).
    • Gain

      public static final Param Gain
      Gain in percent (default 50%).
    • AutoGain

      public static final Param AutoGain
      Auto gain enable (default on for most applications).
    • Contrast

      public static final Param Contrast
      Contrast in percent (default 50%).
    • Chroma

      public static final Param Chroma
      Chroma map enable (default off).
    • Smooth

      public static final Param Smooth
      Smooth range in percent (default 50%).
    • PenetrationMode

      public static final Param PenetrationMode
      Penetration mode enable (default off).
    • AutoFocus

      public static final Param AutoFocus
      Auto focus enable (default on all applications).
    • FocusDepth

      public static final Param FocusDepth
      Focus depth in cm (applied when auto focus turned off).
    • ExtendFov

      public static final Param ExtendFov
      Extended FOV Imaging enable (available on linear probes, default off for most applications).
    • ColorGain

      public static final Param ColorGain
      Color/power gain in percent (default 50%).
    • ColorPrf

      public static final Param ColorPrf
      Color/power pulse repetition frequency in kHz (default dependent on application).
    • ColorSteer

      public static final Param ColorSteer
      Color/power steering angle in degrees (available on linear probes, default dependent on application).
    • ColorInvert

      public static final Param ColorInvert
      Color map invert (default off - red towards probe, blue away from probe).
    • PwGain

      public static final Param PwGain
      Pulsed wave Doppler gain in [percent] (default 50%).
    • PwPrf

      public static final Param PwPrf
      Pulsed wave Doppler pulse repetition frequency in [kHz] (default dependent on application).
    • PwSteer

      public static final Param PwSteer
      Pulsed wave Doppler steering angle in [degrees] (available on linear probes, default dependent on application).
    • DopplerVelocity

      public static final Param DopplerVelocity
      Read only velocity range in [cm/s] if the system is operating in a Doppler mode based on the current PRF programmed (returns 0 if not in a doppler mode).
    • NeedleSide

      public static final Param NeedleSide
      Needle enhance side (default 0 - LED side).
    • StrainOpacity

      public static final Param StrainOpacity
      Opacity of the strain image overlay (default 50%).
    • RawBuffer

      public static final Param RawBuffer
      Raw data buffering enable (default off).
    • RfStreaming

      public static final Param RfStreaming
      RF streaming enable (default on).
    • ImuStreaming

      public static final Param ImuStreaming
      IMU streaming enable (default off).
    • SyncPulse

      public static final Param SyncPulse
      Sync pulse enable (default off).
    • EcoMode

      public static final Param EcoMode
      Eco mode enable (default off).
  • Method Details

    • values

      public static Param[] 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

      public static Param valueOf(String name)
      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 name
      NullPointerException - if the argument is null