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

net.niebes.retrofit.metrics.HttpSeries.kt Maven / Gradle / Ivy

The newest version!
package net.niebes.retrofit.metrics

enum class HttpSeries(private val value: Int) {
    INFORMATIONAL(1),
    SUCCESSFUL(2),
    REDIRECTION(3),
    CLIENT_ERROR(4),
    SERVER_ERROR(5),
    ;

    companion object {
        fun fromHttpStatus(status: Int): HttpSeries? =
            values().firstOrNull { it.value == status / 100 }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy