Method

public struct Method: RawRepresentable, Equatable, Hashable

Standard HTTP Methods

  • Declaration

    Swift

    public private(set) var rawValue: String
  • Declaration

    Swift

    public var hashValue: Int
  • Declaration

    Swift

    public init(rawValue: String)
  • 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

    public init?(rawValue: String?)

    Parameters

    rawValue

    The raw value to use for the new instance.

  • 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

    public init(_ rawValue: String)

    Parameters

    rawValue

    The raw value to use for the new instance.

  • The corresponding standard method string

    Declaration

    Swift

    public var description: String
  • get

    HTTP GET method

    Declaration

    Swift

    public static let get = Http.Method("GET")
  • put

    HTTP PUT method

    Declaration

    Swift

    public static let put = Http.Method("PUT")
  • HTTP POST method

    Declaration

    Swift

    public static let post = Http.Method("POST")
  • HTTP DELETE method

    Declaration

    Swift

    public static let delete = Http.Method("DELETE")
  • Returns a Boolean value indicating whether a Http.Method is equal to it’s string representation

    Comparison is case insensitive. So both Http.Method.get == "GET" and Http.Method.get == "get" would return true.

    Equality is the inverse of inequality. For any values a and b, a == b implies that a != b is false.

    Declaration

    Swift

    public static func == (lhs: Http.Method, rhs: Http.Method.RawValue) -> Bool

    Parameters

    lhs

    A Http.Method value to compare.

    rhs

    A String value to compare.

  • Returns a Boolean value indicating whether a Http.Method is equal to it’s string representation

    Comparison is case insensitive. So both "GET" == Http.Method.get and "get" == Http.Method.get would return true.

    Equality is the inverse of inequality. For any values a and b, a == b implies that a != b is false.

    Declaration

    Swift

    public static func == (lhs: Http.Method.RawValue, rhs: Http.Method) -> Bool

    Parameters

    lhs

    A String value to compare.

    rhs

    A Http.Method value to compare.