FormatType

Objective-C

NS_ENUM(int, FormatType) {
    Formatter_FMT_DEFAULT = 0,
    Formatter_FMT_MATLAB = 1,
    Formatter_FMT_CSV = 2,
    Formatter_FMT_PYTHON = 3,
    Formatter_FMT_NUMPY = 4,
    Formatter_FMT_C = 5
}

Swift

enum FormatType : Int32
  • Declaration

    Objective-C

    Formatter_FMT_DEFAULT = 0

    Swift

    case Formatter_FMT_DEFAULT = 0
  • Declaration

    Objective-C

    Formatter_FMT_MATLAB = 1

    Swift

    case Formatter_FMT_MATLAB = 1
  • Declaration

    Objective-C

    Formatter_FMT_CSV = 2

    Swift

    case Formatter_FMT_CSV = 2
  • Declaration

    Objective-C

    Formatter_FMT_PYTHON = 3

    Swift

    case Formatter_FMT_PYTHON = 3
  • Declaration

    Objective-C

    Formatter_FMT_NUMPY = 4

    Swift

    case Formatter_FMT_NUMPY = 4
  • Declaration

    Objective-C

    Formatter_FMT_C = 5

    Swift

    case Formatter_FMT_C = 5