Other Enumerations

The following enumerations are available globally.

  • Error that relates to Mimi Processing Session.

    Declaration

    Swift

    public enum MimiProcessingSessionError : Error
  • Grade of a user’s hearing ability based on the WHO 2021 hearing loss report.

    • normal: Normal hearing (Less than 20 dB).
    • mild: Mild hearing loss (20 to < 35 dB).
    • moderate: Moderate hearing loss (35 to < 50 dB).
    • moderatelySevere: Moderately severe hearing loss (50 to < 65 dB).
    • severe: Severe hearing loss (65 to < 80 dB).
    • profound: Profound hearing loss (80 to < 95 dB).
    • unknown: Unable to categorize the ability.
    Declaration

    Swift

    public enum MimiHearingGradeWHO2021 : Int, Codable, CaseIterable
    extension MimiHearingGradeWHO2021: CustomDebugStringConvertible
  • Hearing symmetry of a user.

    • symmetrical: Hearing symmetrical across both ears.
    • asymmetrical: Hearing asymmetrical with one ear better than the other.
    • unknown: Unable to determine the hearing symmetry.
    Declaration

    Swift

    public enum MimiHearingSymmetry : Equatable, Codable
  • Error that occurs within a MimiProcessingParameter.

    Declaration

    Swift

    public enum MimiProcessingParameterError : Error
  • Enumeration representing the update state of a MimiProcessingParameter.

    Declaration

    Swift

    public enum MimiProcessingParameterUpdateState<Value> where Value : Equatable, Value : Sendable