All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.lightningkite.lightningserver.http.HttpMethod.kt Maven / Gradle / Ivy

The newest version!
package com.lightningkite.lightningserver.http

@JvmInline
value class HttpMethod(private val asString: String) {
    companion object {
        val GET = HttpMethod("GET")
        val POST = HttpMethod("POST")
        val PUT = HttpMethod("PUT")
        val PATCH = HttpMethod("PATCH")
        val DELETE = HttpMethod("DELETE")
        val OPTIONS = HttpMethod("OPTIONS")
        val HEAD = HttpMethod("HEAD")
    }

    override fun toString(): String = asString
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy