UnknownEnum

struct UnknownEnum
extension UnknownEnum : AutomationValue, Enum, Equatable, Hashable, RawRepresentable, Sendable

Represents an unknown enum.

  • Undocumented

    Declaration

    Swift

    typealias OriginalValue = UInt64
  • The corresponding value of the raw type.

    A new instance initialized with rawValue will be equivalent to this instance. For example:

    enum PaperSize: String {
        case A4, A5, Letter, Legal
    }
    
    let selectedSize = PaperSize.Letter
    print(selectedSize.rawValue)
    // Prints "Letter"
    
    print(selectedSize == PaperSize(rawValue: selectedSize.rawValue)!)
    // Prints "true"
    

    Declaration

    Swift

    let rawValue: UInt64
  • Creates a new instance with the specified raw value.

    If there is no value of the type that corresponds with the specified raw value, this initializer returns nil. For example:

    enum PaperSize: String {
        case A4, A5, Letter, Legal
    }
    
    print(PaperSize(rawValue: "Legal"))
    // Prints "Optional("PaperSize.Legal")"
    
    print(PaperSize(rawValue: "Tabloid"))
    // Prints "nil"
    

    Declaration

    Swift

    init(rawValue: UInt64)

    Parameters

    rawValue

    The raw value to use for the new instance.

  • Undocumented

    Declaration

    Swift

    static func unrecognizedCase() -> UnknownEnum