SortType

public enum SortType : Int

The set of available library sorting types.

case none = 0
case alphabetically = 1
...
  • Tag: KKL-SortType

Cases

Properties

  • all

    An array containing all sort types.

    Declaration

    Swift

    public static let all: [KKLibrary.SortType]
  • The string value of a sort type.

    Declaration

    Swift

    public var stringValue: String { get }
  • The parameter value of a sort type.

    Declaration

    Swift

    public var parameterValue: String { get }
  • An array containing all library sort type sub-options string value and its equivalent raw value.

    Declaration

    Swift

    public var optionValue: [KKLibrary.SortType.Options] { get }
  • The set of available library sort type option types.

    case none = 0
    case ascending, descending
    case newest, oldest
    case worst, best
    
    • Tag: KKL-ST-Options
    See more

    Declaration

    Swift

    public enum Options : Int