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

ai.platon.pulsar.common.urls.Hyperlinks.kt Maven / Gradle / Ivy

package ai.platon.pulsar.common.urls

/**
 * The hyperlink helper object.
 * */
object Hyperlinks {
    
    /**
     * Convert a [UrlAware] to a [Hyperlink], might loss information
     * */
    fun toHyperlink(url: UrlAware): Hyperlink {
        return if (url is Hyperlink) url
        else Hyperlink(url.url, url.text, url.order, url.referrer, url.args, url.href)
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy