Step

public enum Step

Transitions Steps

  • The Transition Time is immediate.

    Declaration

    Swift

    case immediate
  • Number of Steps

    Declaration

    Swift

    case steps(UInt8)
  • The value is unknown

    The state cannot be set to this value, but an element may report an unknown value if a transition is higher than 0x3E or not determined.

    Declaration

    Swift

    case unknown
  • Raw UInt8 Value for Steps

    Declaration

    Swift

    public var rawValue: UInt8 { get }
  • Create Step

    Declaration

    Swift

    public static func create(_ value: UInt8) -> Step

    Return Value

    Step