ExtensionType

public enum ExtensionType: Int, ChordDescription

Defines type of the extended chords.

  • 9th chord. Second note of the chord, one octave up from root.

    Declaration

    Swift

    case ninth = 9
  • 11th chord. Eleventh note of the chord, one octave up from root.

    Declaration

    Swift

    case eleventh = 11
  • 13th chord. Sixth note of the chord, one octave up from root.

    Declaration

    Swift

    case thirteenth = 13
  • Interval between root.

    Declaration

    Swift

    public var interval: Interval
  • Notation of the chord part.

    Declaration

    Swift

    public var notation: String
  • Description of the chord part.

    Declaration

    Swift

    public var description: String
  • all

    All values of ExtensionType.

    Declaration

    Swift

    public static var all: [ExtensionType]