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

de.miraculixx.mcommons.extensions.GeneralExtensions.kt Maven / Gradle / Ivy

There is a newer version: 1.0.1
Show newest version
@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