OperationalStatusEnum

enum OperationalStatusEnum

The operational status of the device for an area.

  • The device has not yet started operating in the given area, or has not finished operating in that area but is not currently operating in the area.

    Declaration

    Swift

    case pending
  • The device is currently operating in the given area.

    Declaration

    Swift

    case operating
  • The device has skipped the given area, before or during operating at it, due to a SkipArea command, an out-of-band command, a vendor-specific reason, or because the device ended operating without success.

    Declaration

    Swift

    case skipped
  • The device has finished operating in the given area.

    Declaration

    Swift

    case completed
  • 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.