io.github.dehuckakpyt.telegrambot.ext.StringExt.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of telegram-bot-core Show documentation
Show all versions of telegram-bot-core Show documentation
Kotlin Telegram Bot library
The newest version!
package io.github.dehuckakpyt.telegrambot.ext
import com.fasterxml.jackson.databind.PropertyNamingStrategies
import java.util.*
/**
* Created on 18.07.2023.
*
*
* @author Denis Matytsin
*/
private val translator = PropertyNamingStrategies.KebabCaseStrategy()
internal fun String.toKebabCase(): String = translator.translate(this)
public fun String.toUUID(): UUID = UUID.fromString(this)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy