NoteValueType

public enum NoteValueType: Double, Codable

Defines the types of note values.

  • Two whole notes.

    Declaration

    Swift

    case doubleWhole = 0.5
  • Whole note.

    Declaration

    Swift

    case whole = 1
  • Half note.

    Declaration

    Swift

    case half = 2
  • Quarter note.

    Declaration

    Swift

    case quarter = 4
  • Eighth note.

    Declaration

    Swift

    case eighth = 8
  • Sixteenth note.

    Declaration

    Swift

    case sixteenth = 16
  • Thirtysecond note.

    Declaration

    Swift

    case thirtysecond = 32
  • Sixtyfourth note.

    Declaration

    Swift

    case sixtyfourth = 64