RSDWeekday

public enum RSDWeekday : Int, Codable, RSDIntEnumSet

The weekday enum assigns an enum value to each day of the week and implements Comparable to allow for sorting the weekdays by the order appropriate for the participant’s current Locale.

  • all

    Set of all the weekdays (Every day).

    Declaration

    Swift

    public static var all: Set<RSDWeekday> { get }
  • The localized weekday symbol.

    Declaration

    Swift

    public var text: String? { get }
  • The short localized weekday symbol.

    Declaration

    Swift

    public var shortText: String? { get }
  • Sort the weekdays based on the firstWeekday property of the current Locale.

    Declaration

    Swift

    public static func < (lhs: RSDWeekday, rhs: RSDWeekday) -> Bool
  • Returns rawValue.

    Declaration

    Swift

    public var answerValue: Codable? { get }
  • Returns nil.

    Declaration

    Swift

    public var detail: String? { get }
  • Returns false.

    Declaration

    Swift

    public var isExclusive: Bool { get }
  • Returns nil.

    Declaration

    Swift

    public var imageVendor: RSDImageVendor? { get }
  • Returns rawValue.

    Declaration

    Swift

    public var matchingAnswer: Any? { get }