de.miraculixx.mcommons.extensions.GeneralExtensions.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mc-commons Show documentation
Show all versions of mc-commons Show documentation
Common utilities for Minecraft plugins
@file:Suppress("unused")
package de.miraculixx.mcommons.extensions
import java.util.*
fun String.toUUID(): UUID? {
return try {
UUID.fromString(this)
} catch (_: IllegalArgumentException) {
null
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy