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

io.github.crow_misia.sdp.attribute.MsidAttribute.kt Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
package io.github.crow_misia.sdp.attribute

data class MsidAttribute internal constructor(
    override var value: String,
) : BaseSdpAttribute(fieldName, value) {
    override fun toString() = super.toString()

    companion object {
        internal const val fieldName = "msid"

        @JvmStatic
        fun of(vararg value: String): MsidAttribute {
            return MsidAttribute(value.joinToString(" "))
        }

        internal fun parse(value: String): SdpAttribute {
            return MsidAttribute(value)
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy