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

com.avito.test.summary.SlackEmojiProvider.kt Maven / Gradle / Ivy

Go to download

Collection of infrastructure libraries and gradle plugins of Avito Android project

There is a newer version: 2022.1
Show newest version
package com.avito.test.summary

internal class SlackEmojiProvider {

    fun emojiName(health: Int): String = when (health) {
        in 100..Int.MAX_VALUE -> ":stfgod0:"
        in 95..99 -> ":stfst01:"
        in 85..94 -> ":stfst11:"
        in 75..84 -> ":stfst21:"
        in 65..74 -> ":stfst31:"
        in 50..64 -> ":stfst41:"
        in 0..49 -> ":stfdead0:"
        else -> ":stfdead0:"
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy