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

com.freya02.botcommands.internal.localization.JavaFormattableString.kt Maven / Gradle / Ivy

package com.freya02.botcommands.internal.localization

class JavaFormattableString(override val formatterName: String, private val formatter: String?) : FormattableString {
    override fun format(obj: Any?): String {
        return formatter?.format(obj) ?: obj.toString()
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy