Each enum
class has a valueOf()
function that takes the string representation
of the constant name and returns the actual constant itself.
You can learn more about this in:
Tags:
xxxxxxxxxx
1
enum class HttpResponse(val code: Int, val message: String) {
2
OK(200, "OK"),
3
MOVED_PERMANENTLY(301, "Moved Permanently"),
4
NOT_MODIFIED(304, "Not Modified"),
5
UNAUTHORIZED(401, "Unauthorized"),
6
NOT_FOUND(404, "Not Found"),
7
INTERNAL_SERVER_ERROR(501, "WTF?");
8
9
override fun toString() = message
10
}
11
12
fun main() {
13
println(HttpResponse.valueOf("NOT_MODIFIED"))
14
}