enum StatusCodeEnumThe status code.
-
Invalid TLS endpoint.
Declaration
Swift
case invalidTLSEndpoint -
Invalid stream.
Declaration
Swift
case invalidStream -
Invalid URL.
Declaration
Swift
case invalidUrl -
Invalid zone.
Declaration
Swift
case invalidZone -
Invalid combination.
Declaration
Swift
case invalidCombination -
Invalid trigger type.
Declaration
Swift
case invalidTriggerType -
Invalid transport status.
Declaration
Swift
case invalidTransportStatus -
Invalid options.
Declaration
Swift
case invalidOptions -
Invalid stream usage.
Declaration
Swift
case invalidStreamUsage -
Invalid time.
Declaration
Swift
case invalidTime -
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
rawValueThe raw value to use for the new instance.